LibGUI: Make the timers in GAbstractButton and GScrollBar into children

This commit is contained in:
Andreas Kling 2019-08-18 12:14:15 +02:00
parent 93f14966c0
commit a1a4013b1c
Notes: sideshowbarker 2024-07-19 12:36:56 +09:00
2 changed files with 2 additions and 0 deletions

View file

@ -9,6 +9,7 @@ GAbstractButton::GAbstractButton(GWidget* parent)
GAbstractButton::GAbstractButton(const StringView& text, GWidget* parent)
: GWidget(parent)
, m_text(text)
, m_auto_repeat_timer(this)
{
m_auto_repeat_timer.on_timeout = [this] {
click();