mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-09 18:16:09 +03:00
LibGUI: Don't show empty ComboBox windows
This commit is contained in:
parent
a0de3860cc
commit
aa8e7aba42
Notes:
sideshowbarker
2024-07-17 06:43:04 +09:00
Author: https://github.com/thankyouverycool Commit: https://github.com/SerenityOS/serenity/commit/aa8e7aba42 Pull-request: https://github.com/SerenityOS/serenity/pull/15321 Issue: https://github.com/SerenityOS/serenity/issues/13365
@ -103,6 +103,8 @@ ComboBox::ComboBox()
|
||||
m_open_button->set_icon(Gfx::Bitmap::try_load_from_file("/res/icons/16x16/downward-triangle.png"sv).release_value_but_fixme_should_propagate_errors());
|
||||
m_open_button->set_focus_policy(GUI::FocusPolicy::NoFocus);
|
||||
m_open_button->on_click = [this](auto) {
|
||||
if (!m_list_view->item_count())
|
||||
return;
|
||||
if (m_list_window->is_visible())
|
||||
close();
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user