diff options
author | thankyouverycool <66646555+thankyouverycool@users.noreply.github.com> | 2021-09-01 11:46:24 -0400 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-09-01 23:02:01 +0100 |
commit | 93e45588e5879386f5f7e661c4a0ce99d485ec05 (patch) | |
tree | b26ba8c3e331f9fd5c108b3096a0f2256da083b7 /Userland/Libraries/LibGUI | |
parent | c93c54c65614c2de133bb4b813ad68eb7fd29caf (diff) | |
download | serenity-93e45588e5879386f5f7e661c4a0ce99d485ec05.zip |
LibGUI:: Style Combo and SpinBox buttons as ThickCaps
These suffered the same visual defect as scrollbars when styled
as normal buttons: against backgrounds with the same color as
their highlighting, aspect was lost.
Diffstat (limited to 'Userland/Libraries/LibGUI')
-rw-r--r-- | Userland/Libraries/LibGUI/ComboBox.cpp | 1 | ||||
-rw-r--r-- | Userland/Libraries/LibGUI/SpinBox.cpp | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Libraries/LibGUI/ComboBox.cpp b/Userland/Libraries/LibGUI/ComboBox.cpp index e759fab601..e46f0be84f 100644 --- a/Userland/Libraries/LibGUI/ComboBox.cpp +++ b/Userland/Libraries/LibGUI/ComboBox.cpp @@ -75,6 +75,7 @@ ComboBox::ComboBox() }; m_open_button = add<Button>(); + m_open_button->set_button_style(Gfx::ButtonStyle::ThickCap); m_open_button->set_icon(Gfx::Bitmap::try_load_from_file("/res/icons/16x16/downward-triangle.png")); m_open_button->set_focus_policy(GUI::FocusPolicy::NoFocus); m_open_button->on_click = [this](auto) { diff --git a/Userland/Libraries/LibGUI/SpinBox.cpp b/Userland/Libraries/LibGUI/SpinBox.cpp index 59a5647398..76a314e536 100644 --- a/Userland/Libraries/LibGUI/SpinBox.cpp +++ b/Userland/Libraries/LibGUI/SpinBox.cpp @@ -33,11 +33,13 @@ SpinBox::SpinBox() }; m_increment_button = add<Button>(); + m_increment_button->set_button_style(Gfx::ButtonStyle::ThickCap); m_increment_button->set_icon(Gfx::Bitmap::try_load_from_file("/res/icons/16x16/upward-triangle.png")); m_increment_button->set_focus_policy(GUI::FocusPolicy::NoFocus); m_increment_button->on_click = [this](auto) { set_value(m_value + 1); }; m_increment_button->set_auto_repeat_interval(150); m_decrement_button = add<Button>(); + m_decrement_button->set_button_style(Gfx::ButtonStyle::ThickCap); m_decrement_button->set_icon(Gfx::Bitmap::try_load_from_file("/res/icons/16x16/downward-triangle.png")); m_decrement_button->set_focus_policy(GUI::FocusPolicy::NoFocus); m_decrement_button->on_click = [this](auto) { set_value(m_value - 1); }; |