mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-23 04:54:18 +00:00
Fix empty statusbar showed after app restarted
This commit is contained in:
parent
e3671050d1
commit
a8bcc2ee52
@ -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…
x
Reference in New Issue
Block a user