mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-22 01:06:03 +03:00
BUGFIX: The number of search results was not reset when clicking on 'Clear' button
This commit is contained in:
parent
03fae3953f
commit
d43d68122b
2 changed files with 2 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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…
Reference in a new issue