mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Fixes the dropdown order in channel filter dialog (#2168)
This commit is contained in:
parent
3ffb28427d
commit
d206ed4bcc
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ ChannelFilterEditorDialog::ValueSpecifier::ValueSpecifier()
|
|||
this->layout_ = new QHBoxLayout;
|
||||
|
||||
this->typeCombo_->insertItems(
|
||||
0, {"Variable", "Constant Text", "Constant Number"});
|
||||
0, {"Constant Text", "Constant Number", "Variable"});
|
||||
this->varCombo_->insertItems(0, filterparser::validIdentifiersMap.values());
|
||||
|
||||
this->layout_->addWidget(this->typeCombo_);
|
||||
|
|
Loading…
Reference in a new issue