1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:57:35 +00:00

LibGUI: Reset Windows as visible for timer purposes on show()

Fixes scrolling timers failing to fire if a ComboBox window
had previously become occluded.
This commit is contained in:
thankyouverycool 2022-09-21 18:09:38 -04:00 committed by Andreas Kling
parent db2a1d3620
commit 7c2edd232d

View file

@ -165,6 +165,7 @@ void Window::show()
parent_window ? parent_window->window_id() : 0,
launch_origin_rect);
m_visible = true;
m_visible_for_timer_purposes = true;
apply_icon();