diff --git a/Changelog b/Changelog index 176d3d596..4d3bb61a3 100644 --- a/Changelog +++ b/Changelog @@ -40,6 +40,7 @@ - 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 - 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 options a little - COSMETIC: Display more logs messages concerning features diff --git a/src/searchEngine.cpp b/src/searchEngine.cpp index e1fbe1d73..006a2426f 100644 --- a/src/searchEngine.cpp +++ b/src/searchEngine.cpp @@ -564,6 +564,7 @@ void SearchEngine::on_clear_button_clicked(){ // Disable clear & download buttons clear_button->setEnabled(false); download_button->setEnabled(false); + results_lbl->setText(tr("Results")+" (0):"); } // Download selected items in search results list