fixed width when searching

This commit is contained in:
fourtf 2019-09-02 09:44:25 +02:00
parent 0b49f696ce
commit 54c26d2228
2 changed files with 7 additions and 2 deletions

View file

@ -8,7 +8,7 @@ QCheckBox::indicator {
}
chatterino--ComboBox {
width: 100px;
width: 120px;
}
QScrollArea {

View file

@ -390,7 +390,12 @@ void GeneralPage::initLayout(SettingsLayout &layout)
layout.addDescription(
createNamedLink(FIREFOX_EXTENSION_LINK, "Download for Firefox"));
#endif
} // namespace chatterino
// invisible element for width
auto inv = new BaseWidget(this);
inv->setScaleIndependantWidth(500);
layout.addWidget(inv);
}
void GeneralPage::initExtra()
{