UI: Use setGeometry to restore saved dimensions

There was an issue where the position/size would keep changing every
time the program opened/closed, was due to the fact that we were not
calling setGeometry to restore the position/size.
master
jp9000 2015-03-25 11:31:21 -07:00
parent 75ee8ff528
commit 9e39a2c787
1 changed files with 1 additions and 2 deletions

View File

@ -98,8 +98,7 @@ OBSBasic::OBSBasic(QWidget *parent)
int posy = config_get_int(App()->GlobalConfig(), "MainWindow",
"posy");
resize(width, height);
move(posx, posy);
setGeometry(posx, posy, width, height);
}