1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:58:11 +00:00

LibGUI: Replace up and down arrows with emoji

This commit is contained in:
Hüseyin ASLITÜRK 2020-05-16 22:21:29 +03:00 committed by Andreas Kling
parent 80699a0824
commit d18f6e82eb
4 changed files with 8 additions and 8 deletions

View file

@ -67,7 +67,7 @@ ComboBox::ComboBox()
};
m_open_button = add<Button>();
m_open_button->set_focusable(false);
m_open_button->set_text("\xc3\xb7");
m_open_button->set_text("\xE2\xAC\x87"); // DOWNWARDS BLACK ARROW
m_open_button->on_click = [this](auto) {
if (m_list_window->is_visible())
close();