mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 19:29:16 +00:00
LibGUI: Don't show empty ComboBox windows
This commit is contained in:
committed by
Andreas Kling
parent
a0de3860cc
commit
aa8e7aba42
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user