summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/Application.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibGUI/Application.cpp')
-rw-r--r--Userland/Libraries/LibGUI/Application.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibGUI/Application.cpp b/Userland/Libraries/LibGUI/Application.cpp
index 9b38932d66..1abb207436 100644
--- a/Userland/Libraries/LibGUI/Application.cpp
+++ b/Userland/Libraries/LibGUI/Application.cpp
@@ -95,11 +95,11 @@ Application::Application(int argc, char** argv, Core::EventLoop::MakeInspectable
m_tooltip_show_timer = Core::Timer::create_single_shot(700, [this] {
request_tooltip_show();
- });
+ }).release_value_but_fixme_should_propagate_errors();
m_tooltip_hide_timer = Core::Timer::create_single_shot(50, [this] {
tooltip_hide_timer_did_fire();
- });
+ }).release_value_but_fixme_should_propagate_errors();
}
static bool s_in_teardown;