mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 07:38:10 +00:00
GComboBox: Use a down-arrow (instead of an up-arrow) for the button
This commit is contained in:
parent
6e51ebad8c
commit
68c06b8fac
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ GComboBox::GComboBox(GWidget* parent)
|
||||||
};
|
};
|
||||||
m_open_button = new GButton(this);
|
m_open_button = new GButton(this);
|
||||||
m_open_button->set_focusable(false);
|
m_open_button->set_focusable(false);
|
||||||
m_open_button->set_text("\xc3\xb6");
|
m_open_button->set_text("\xc3\xb7");
|
||||||
m_open_button->on_click = [this](auto&) {
|
m_open_button->on_click = [this](auto&) {
|
||||||
if (m_list_window->is_visible())
|
if (m_list_window->is_visible())
|
||||||
close();
|
close();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue