mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-09 00:52:30 -06:00
- BUGFIX: Fixed "hide top toolBar" feature
This commit is contained in:
@@ -1,3 +1,6 @@
|
|||||||
|
* Unknown - Christophe Dumez <chris@qbittorrent.org> - v1.3.2
|
||||||
|
- BUGFIX: Fixed "hide top toolBar" feature
|
||||||
|
|
||||||
* Mon Jan 26 2009 - Christophe Dumez <chris@qbittorrent.org> - v1.3.1
|
* Mon Jan 26 2009 - Christophe Dumez <chris@qbittorrent.org> - v1.3.1
|
||||||
- BUGFIX: Torrents paused due to an I/O error were displayed as queued
|
- BUGFIX: Torrents paused due to an I/O error were displayed as queued
|
||||||
- BUGFIX: qBittorrent now prints backtrace in terminal when segfaulting
|
- BUGFIX: qBittorrent now prints backtrace in terminal when segfaulting
|
||||||
|
|||||||
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) {
|
||||||
|
|||||||
Reference in New Issue
Block a user