diff --git a/Changelog b/Changelog index 4f008c7cc..a74cf148d 100644 --- a/Changelog +++ b/Changelog @@ -1,6 +1,7 @@ * Unreleased - Christophe Dumez - v2.1.1 - BUGFIX: Fix compilation with Qt4.4 - BUGFIX: Save torrent metadata so that it does not have to be re-downloaded on restart (Magnet links) + - BUGFIX: Fix folder renaming in a torrent (would rename children under certain conditions) * Mon Jan 18 2010 - Christophe Dumez - v2.1.0 - FEATURE: Graphical User Interface can be disabled at compilation time (headless running) diff --git a/src/propertieswidget.cpp b/src/propertieswidget.cpp index c0f60c937..a6ff366d1 100644 --- a/src/propertieswidget.cpp +++ b/src/propertieswidget.cpp @@ -409,7 +409,7 @@ QPushButton* PropertiesWidget::getButtonFromIndex(int index) { return url_seeds_button; case FILES_TAB: return files_button; - default: + default: return main_infos_button; } } @@ -613,9 +613,12 @@ void PropertiesWidget::renameSelectedFile() { // Replace path in all files for(int i=0; isetData(index, new_name_last); diff --git a/src/torrentadditiondlg.h b/src/torrentadditiondlg.h index 06825c7db..f477c069c 100644 --- a/src/torrentadditiondlg.h +++ b/src/torrentadditiondlg.h @@ -350,10 +350,13 @@ public slots: // Replace path in all files for(uint i=0; isetData(index, new_name_last);