mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 01:33:07 -07:00
Fix renaming files is not case sensitive on Windows platform. Closes #5128.
This commit is contained in:
parent
a2d5d48aff
commit
0939875ca8
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue