mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
reordered resize call
This commit is contained in:
parent
70e5bd1bfd
commit
927ee09221
|
@ -26,18 +26,15 @@ SettingsDialog::SettingsDialog()
|
|||
: BaseWindow(BaseWindow::DisableCustomScaling)
|
||||
{
|
||||
this->setWindowTitle("Chatterino Settings");
|
||||
|
||||
this->resize(815, 600);
|
||||
this->themeChangedEvent();
|
||||
this->scaleChangedEvent(this->scale());
|
||||
|
||||
this->initUi();
|
||||
this->addTabs();
|
||||
|
||||
this->overrideBackgroundColor_ = QColor("#111111");
|
||||
this->scaleChangedEvent(
|
||||
this->scale()); // execute twice to fix performance + width of item
|
||||
|
||||
this->resize(815, 600);
|
||||
}
|
||||
|
||||
void SettingsDialog::initUi()
|
||||
|
|
Loading…
Reference in a new issue