Add keybind to move current focus to top of stack

This commit is contained in:
Isaac Freund
2020-03-28 14:37:30 +01:00
parent d7d5cf06ee
commit ca2e169535
2 changed files with 28 additions and 18 deletions

View File

@ -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;
}