diff --git a/src/gui/properties/propertieswidget.cpp b/src/gui/properties/propertieswidget.cpp index 5df08d842..b1378fea1 100644 --- a/src/gui/properties/propertieswidget.cpp +++ b/src/gui/properties/propertieswidget.cpp @@ -700,7 +700,7 @@ void PropertiesWidget::renameSelectedFile() path_items.removeLast(); path_items << new_name_last; QString new_name = path_items.join("/"); - if (Utils::Fs::sameFileNames(old_name, new_name)) { + if (old_name == new_name) { qDebug("Name did not change"); return; }