1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

re-move idle timer construction before restoreGeometry

This commit is contained in:
Dubslow 2014-12-01 14:02:44 -06:00
parent 9df3fdc2a0
commit 1340e00f69

View File

@ -74,6 +74,10 @@ void Widget::init()
{
ui->setupUi(this);
idleTimer = new QTimer();
idleTimer->setSingleShot(true);
setIdleTimer(Settings::getInstance().getAutoAwayTime());
//restore window state
restoreGeometry(Settings::getInstance().getWindowGeometry());
restoreState(Settings::getInstance().getWindowState());
@ -128,10 +132,6 @@ void Widget::init()
ui->statusbar->hide();
ui->menubar->hide();
idleTimer = new QTimer();
idleTimer->setSingleShot(true);
setIdleTimer(Settings::getInstance().getAutoAwayTime());
layout()->setContentsMargins(0, 0, 0, 0);
ui->friendList->setStyleSheet(Style::resolve(Style::getStylesheet(":ui/friendList/friendList.css")));