Skip to content

Commit

Permalink
Update emote_menu_filter.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Satoru-1816 committed Aug 11, 2024
1 parent 9012b0a commit cd79cbb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/widgets/emote_menu_filter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ EmoteMenuFilter::EmoteMenuFilter(QDialog *parent, AOApplication *p_ao_app, Court

scrollArea->setWidget(buttonContainer);
scrollArea->setWidgetResizable(true);
searchBox->setPlaceholderText("Search...");

setupLayout();

Expand All @@ -54,10 +53,7 @@ EmoteMenuFilter::EmoteMenuFilter(QDialog *parent, AOApplication *p_ao_app, Court
setParent(courtroom);
setWindowFlags(Qt::Tool);

scrollArea->setStyleSheet(" ");
categoryList->setStyleSheet(" ");
setStyleSheet("QLabel { color: black; } QLineEdit { background-color: white; }");
searchBox->setStyleSheet(" ");
}

void EmoteMenuFilter::setupLayout()
Expand Down Expand Up @@ -214,6 +210,10 @@ void EmoteMenuFilter::arrangeButtons() {
scrollArea->setWidget(containerWidget);
scrollArea->setWidgetResizable(true);

scrollArea->setStyleSheet(" ");
categoryList->setStyleSheet(" ");
searchBox->setStyleSheet(" ");
searchBox->setPlaceholderText("Search...");
}

QStringList EmoteMenuFilter::getCategoryList() const {
Expand Down

0 comments on commit cd79cbb

Please sign in to comment.