mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 22:18:05 -06:00
- Enabled "Start Minimized" and disabling systray integration at the same time n
o longer make GUI invisible.
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
* Unknown - Christophe Dumez <chris@qbittorrent.org> - v1.5.4
|
* Unknown - Christophe Dumez <chris@qbittorrent.org> - v1.5.4
|
||||||
- BUGFIX: Updated man page
|
- BUGFIX: Updated man page
|
||||||
- BUGFIX: Fixed possible crash with torrents containing unicode characters
|
- BUGFIX: Fixed possible crash with torrents containing unicode characters
|
||||||
|
- BUGFIX: Fixed problem when disabling systray integration and starting minimized
|
||||||
|
|
||||||
* Wed Sep 30 2009 - Christophe Dumez <chris@qbittorrent.org> - v1.5.3
|
* Wed Sep 30 2009 - Christophe Dumez <chris@qbittorrent.org> - v1.5.3
|
||||||
- BUGFIX: Fix a possible crash when pausing then deleting a torrent quickly
|
- BUGFIX: Fix a possible crash when pausing then deleting a torrent quickly
|
||||||
|
|||||||
@@ -249,8 +249,9 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent), dis
|
|||||||
QMainWindow::statusBar()->addPermanentWidget(upSpeedLbl);
|
QMainWindow::statusBar()->addPermanentWidget(upSpeedLbl);
|
||||||
QMainWindow::statusBar()->addPermanentWidget(statusSep4);
|
QMainWindow::statusBar()->addPermanentWidget(statusSep4);
|
||||||
QMainWindow::statusBar()->addPermanentWidget(ratioLbl);
|
QMainWindow::statusBar()->addPermanentWidget(ratioLbl);
|
||||||
if(!settings.value(QString::fromUtf8("Preferences/General/StartMinimized"), false).toBool()) {
|
show();
|
||||||
show();
|
if(settings.value(QString::fromUtf8("Preferences/General/StartMinimized"), false).toBool()) {
|
||||||
|
this->setWindowState(Qt::WindowMinimized);
|
||||||
}
|
}
|
||||||
scrapeTimer = new QTimer(this);
|
scrapeTimer = new QTimer(this);
|
||||||
connect(scrapeTimer, SIGNAL(timeout()), this, SLOT(scrapeTrackers()));
|
connect(scrapeTimer, SIGNAL(timeout()), this, SLOT(scrapeTrackers()));
|
||||||
|
|||||||
Reference in New Issue
Block a user