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

WindowServer+LibGUI+FontEditor: Encode special characters as UTF-8

This commit is contained in:
Sergey Bugaev 2019-09-04 23:50:40 +03:00 committed by Andreas Kling
parent 84bc6a92a7
commit 22e6978c71
5 changed files with 17 additions and 7 deletions

View file

@ -20,7 +20,7 @@ GComboBox::GComboBox(GWidget* parent)
};
m_open_button = new GButton(this);
m_open_button->set_focusable(false);
m_open_button->set_text("\xf7");
m_open_button->set_text("\xc3\xb6");
m_open_button->on_click = [this](auto&) {
if (m_list_window->is_visible())
close();