1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-02 01:44:26 +00:00

BUGFIX: The number of search results was not reset when clicking on 'Clear' button

This commit is contained in:
Christophe Dumez 2007-07-25 07:22:32 +00:00
parent 03fae3953f
commit d43d68122b
2 changed files with 2 additions and 0 deletions

View File

@ -40,6 +40,7 @@
- BUGFIX: Workaround to build on Fedora system (pkg-config problem) - BUGFIX: Workaround to build on Fedora system (pkg-config problem)
- BUGFIX: search plugin update - do not display only last version changelog - BUGFIX: search plugin update - do not display only last version changelog
- BUGFIX: Search plugin update - fixed missing new lines in changelog - BUGFIX: Search plugin update - fixed missing new lines in changelog
- BUGFIX: The number of search results was not reset when clicking on 'Clear' button
- COSMETIC: Redesigned torrent properties a little - COSMETIC: Redesigned torrent properties a little
- COSMETIC: Redesigned options a little - COSMETIC: Redesigned options a little
- COSMETIC: Display more logs messages concerning features - COSMETIC: Display more logs messages concerning features

View File

@ -564,6 +564,7 @@ void SearchEngine::on_clear_button_clicked(){
// Disable clear & download buttons // Disable clear & download buttons
clear_button->setEnabled(false); clear_button->setEnabled(false);
download_button->setEnabled(false); download_button->setEnabled(false);
results_lbl->setText(tr("Results")+" <i>(0)</i>:");
} }
// Download selected items in search results list // Download selected items in search results list