From a15d44f019dc60b001c565ce0b940cc87024dbfd Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Wed, 11 Jan 2023 16:20:17 +0000 Subject: LibCore+Userland: Make Core::Timer::create_repeating() return ErrorOr The FIXMEs must flow! --- Userland/Services/WindowServer/Menu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Userland/Services/WindowServer') diff --git a/Userland/Services/WindowServer/Menu.cpp b/Userland/Services/WindowServer/Menu.cpp index 83048cab5c..376009c3f1 100644 --- a/Userland/Services/WindowServer/Menu.cpp +++ b/Userland/Services/WindowServer/Menu.cpp @@ -537,7 +537,7 @@ void Menu::start_activation_animation(MenuItem& item) float opacity = (float)animation->step / 10.0f; animation->window->set_opacity(opacity); - }); + }).release_value_but_fixme_should_propagate_errors(); timer->start(); } -- cgit v1.2.3