mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-05 06:32:30 +02:00
LibGUI: Don't fire visibility-tracking timers in non-visible widgets
We were already avoiding firing timers within non-visible *windows*. This patch extends the mechanism to support timers within non-visible *widgets*.
This commit is contained in:
Notes:
sideshowbarker
2024-07-18 10:21:51 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/27fecf57bd6
@@ -1114,4 +1114,9 @@ bool Widget::has_pending_drop() const
|
||||
return Application::the()->pending_drop_widget() == this;
|
||||
}
|
||||
|
||||
bool Widget::is_visible_for_timer_purposes() const
|
||||
{
|
||||
return is_visible();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user