summaryrefslogtreecommitdiff
path: root/Userland/Services/WindowServer
diff options
context:
space:
mode:
authorSam Atkins <atkinssj@serenityos.org>2023-01-11 16:20:17 +0000
committerAndreas Kling <kling@serenityos.org>2023-01-12 11:25:51 +0100
commita15d44f019dc60b001c565ce0b940cc87024dbfd (patch)
tree173e3568bff54713fbe7444fd20eada916287f5e /Userland/Services/WindowServer
parent1d4f287582f43acfd76661d20bc2915455809f41 (diff)
downloadserenity-a15d44f019dc60b001c565ce0b940cc87024dbfd.zip
LibCore+Userland: Make Core::Timer::create_repeating() return ErrorOr
The FIXMEs must flow!
Diffstat (limited to 'Userland/Services/WindowServer')
-rw-r--r--Userland/Services/WindowServer/Menu.cpp2
1 files changed, 1 insertions, 1 deletions
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();
}