aboutsummaryrefslogtreecommitdiff
path: root/src/keyboard.zig
diff options
context:
space:
mode:
authorIsaac Freund <ifreund@ifreund.xyz>2020-03-28 14:37:30 +0100
committerIsaac Freund <ifreund@ifreund.xyz>2020-03-28 14:37:30 +0100
commitca2e1695350d696cbce00ef71823c1ab958c11c0 (patch)
treee4a8610f46ac68aea1b3491f32f6ea6331d41365 /src/keyboard.zig
parentd7d5cf06ee838354b65373aefdbf6cc2130505b5 (diff)
downloadriver-ca2e1695350d696cbce00ef71823c1ab958c11c0.tar.gz
river-ca2e1695350d696cbce00ef71823c1ab958c11c0.tar.xz
Add keybind to move current focus to top of stack
Diffstat (limited to 'src/keyboard.zig')
-rw-r--r--src/keyboard.zig2
1 files changed, 1 insertions, 1 deletions
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;
}