mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibCore+Userland: Don't auto-start new Core::Timers
This was unintuitive, and only useful in a few cases. In the majority, users had to immediately call `stop()`, and several who did want the timer started would call `start()` on it immediately anyway. Case in point: There are only two places I had to add a manual `start()`.
This commit is contained in:
parent
a8cf0c9371
commit
6edc0cf5ab
Notes:
sideshowbarker
2024-07-18 04:38:32 +09:00
Author: https://github.com/AtkinsSJ
Commit: 6edc0cf5ab
Pull-request: https://github.com/SerenityOS/serenity/pull/16960
Reviewed-by: https://github.com/alimpfard
10 changed files with 12 additions and 8 deletions
|
@ -132,6 +132,7 @@ NetworkStatisticsWidget::NetworkStatisticsWidget()
|
|||
1000, [this] {
|
||||
update_models();
|
||||
});
|
||||
m_update_timer->start();
|
||||
|
||||
update_models();
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue