1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-03 10:25:02 +00:00

Fix renaming files is not case sensitive on Windows platform. Closes #5128.

This commit is contained in:
Chocobo1 2017-01-30 20:06:17 +08:00
parent a2d5d48aff
commit 0939875ca8

View File

@ -700,7 +700,7 @@ void PropertiesWidget::renameSelectedFile()
path_items.removeLast(); path_items.removeLast();
path_items << new_name_last; path_items << new_name_last;
QString new_name = path_items.join("/"); QString new_name = path_items.join("/");
if (Utils::Fs::sameFileNames(old_name, new_name)) { if (old_name == new_name) {
qDebug("Name did not change"); qDebug("Name did not change");
return; return;
} }