mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
fixed width when searching
This commit is contained in:
parent
0b49f696ce
commit
54c26d2228
|
@ -8,7 +8,7 @@ QCheckBox::indicator {
|
|||
}
|
||||
|
||||
chatterino--ComboBox {
|
||||
width: 100px;
|
||||
width: 120px;
|
||||
}
|
||||
|
||||
QScrollArea {
|
||||
|
|
|
@ -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()
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue