mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-14 17:23:07 -07:00
Fix empty statusbar showed after app restarted
This commit is contained in:
parent
e3671050d1
commit
a8bcc2ee52
1 changed files with 5 additions and 5 deletions
|
@ -1241,17 +1241,17 @@ void MainWindow::optionsSaved()
|
|||
|
||||
void MainWindow::showStatusBar(bool show)
|
||||
{
|
||||
if (show && !m_statusBar) {
|
||||
if (!show) {
|
||||
// Remove status bar
|
||||
setStatusBar(nullptr);
|
||||
}
|
||||
else if (!m_statusBar) {
|
||||
// Create status bar
|
||||
m_statusBar = new StatusBar;
|
||||
connect(m_statusBar.data(), &StatusBar::connectionButtonClicked, this, &MainWindow::showConnectionSettings);
|
||||
connect(m_statusBar.data(), &StatusBar::alternativeSpeedsButtonClicked, this, &MainWindow::toggleAlternativeSpeeds);
|
||||
setStatusBar(m_statusBar);
|
||||
}
|
||||
else if (!show && m_statusBar) {
|
||||
// Remove status bar
|
||||
setStatusBar(nullptr);
|
||||
}
|
||||
}
|
||||
|
||||
void MainWindow::loadPreferences(bool configureSession)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue