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:
Andreas Kling 2021-07-05 18:47:54 +02:00
parent 9f1f3c6f37
commit 27fecf57bd
Notes: sideshowbarker 2024-07-18 10:21:51 +09:00
2 changed files with 7 additions and 0 deletions

View File

@ -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();
}
}

View File

@ -108,6 +108,8 @@ public:
set_max_height(height);
}
virtual bool is_visible_for_timer_purposes() const override;
bool has_tooltip() const { return !m_tooltip.is_empty(); }
String tooltip() const { return m_tooltip; }
void set_tooltip(String);