From 7e0dc09873095546362b6c951da0420b4da3f6dc Mon Sep 17 00:00:00 2001 From: Max Bretschneider Date: Fri, 24 Oct 2025 20:04:50 +0200 Subject: [PATCH] Just using decl literals --- src/Surface.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Surface.zig b/src/Surface.zig index 4ff25992a..19c2662c1 100644 --- a/src/Surface.zig +++ b/src/Surface.zig @@ -5394,8 +5394,8 @@ pub fn performBindingAction(self: *Surface, action: input.Binding.Action) !bool .{ .surface = self }, .goto_window, switch (direction) { - .next => apprt.action.GotoWindow.next, - .previous => apprt.action.GotoWindow.previous, + .previous => .previous, + .next => .next, }, ),