Browse Source

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

adaptive-webui-19844
Christophe Dumez 17 years ago
parent
commit
d43d68122b
  1. 1
      Changelog
  2. 1
      src/searchEngine.cpp

1
Changelog

@ -40,6 +40,7 @@ @@ -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

1
src/searchEngine.cpp

@ -564,6 +564,7 @@ void SearchEngine::on_clear_button_clicked(){ @@ -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")+" <i>(0)</i>:");
}
// Download selected items in search results list

Loading…
Cancel
Save