From 68c06b8facb87ba179b02103f4aa475d5c75a2ed Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 17 Sep 2019 19:57:39 +0200 Subject: [PATCH] GComboBox: Use a down-arrow (instead of an up-arrow) for the button --- Libraries/LibGUI/GComboBox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibGUI/GComboBox.cpp b/Libraries/LibGUI/GComboBox.cpp index 194b70a815..2210733381 100644 --- a/Libraries/LibGUI/GComboBox.cpp +++ b/Libraries/LibGUI/GComboBox.cpp @@ -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("\xc3\xb6"); + m_open_button->set_text("\xc3\xb7"); m_open_button->on_click = [this](auto&) { if (m_list_window->is_visible()) close();