mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-12 08:16:16 -07:00
Fix tab bar visibility when the execution log tab is enabled
This commit is contained in:
parent
050601498c
commit
64df47b49f
2 changed files with 20 additions and 6 deletions
|
@ -385,13 +385,10 @@ void MainWindow::displayRSSTab(bool enable) {
|
|||
int index_tab = tabs->addTab(rssWidget, tr("RSS"));
|
||||
tabs->setTabIcon(index_tab, misc::getIcon("application-rss+xml"));
|
||||
}
|
||||
tabs->showTabBar(true);
|
||||
} else {
|
||||
if(rssWidget) {
|
||||
delete rssWidget;
|
||||
}
|
||||
if(!searchEngine)
|
||||
tabs->showTabBar(false);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -402,13 +399,10 @@ void MainWindow::displaySearchTab(bool enable) {
|
|||
searchEngine = new SearchEngine(this);
|
||||
tabs->insertTab(1, searchEngine, misc::getIcon("edit-find"), tr("Search"));
|
||||
}
|
||||
tabs->showTabBar(true);
|
||||
} else {
|
||||
if(searchEngine) {
|
||||
delete searchEngine;
|
||||
}
|
||||
if(!rssWidget)
|
||||
tabs->showTabBar(false);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue