From ca2e1695350d696cbce00ef71823c1ab958c11c0 Mon Sep 17 00:00:00 2001 From: Isaac Freund Date: Sat, 28 Mar 2020 14:37:30 +0100 Subject: Add keybind to move current focus to top of stack --- src/keyboard.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/keyboard.zig') diff --git a/src/keyboard.zig b/src/keyboard.zig index 4229e0d..b85c671 100644 --- a/src/keyboard.zig +++ b/src/keyboard.zig @@ -94,7 +94,7 @@ pub const Keyboard = struct { // process it as a compositor keybinding. var i: usize = 0; while (i < nsyms) { - handled = keyboard.seat.server.handleKeybinding(syms.?[i]); + handled = keyboard.seat.server.handleKeybinding(syms.?[i], modifiers); if (handled) { break; } -- cgit v1.2.3