mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-13 08:43:08 -07:00
- Fixing 'hide top toobar feature'
This commit is contained in:
parent
83cac18690
commit
3ae783e9cb
1 changed files with 5 additions and 7 deletions
12
src/GUI.cpp
12
src/GUI.cpp
|
@ -931,13 +931,11 @@ void GUI::configureSession(bool deleteOptions) {
|
||||||
setWindowTitle(tr("qBittorrent %1", "e.g: qBittorrent v0.x").arg(QString::fromUtf8(VERSION)));
|
setWindowTitle(tr("qBittorrent %1", "e.g: qBittorrent v0.x").arg(QString::fromUtf8(VERSION)));
|
||||||
}
|
}
|
||||||
displaySpeedInTitle = new_displaySpeedInTitle;
|
displaySpeedInTitle = new_displaySpeedInTitle;
|
||||||
if(options->isToolbarDisplayed() != toolBar->isVisible()) {
|
if(options->isToolbarDisplayed()) {
|
||||||
if(options->isToolbarDisplayed()) {
|
toolBar->setVisible(true);
|
||||||
toolBar->setVisible(true);
|
toolBar->layout()->setSpacing(7);
|
||||||
toolBar->layout()->setSpacing(7);
|
} else {
|
||||||
} else {
|
toolBar->setVisible(false);
|
||||||
toolBar->setVisible(false);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
unsigned int new_refreshInterval = options->getRefreshInterval();
|
unsigned int new_refreshInterval = options->getRefreshInterval();
|
||||||
if(refreshInterval != new_refreshInterval) {
|
if(refreshInterval != new_refreshInterval) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue