1
0
Fork 0
forked from wry/wry

autocommit 2022-02-16 18:14:14 CET

This commit is contained in:
Julian Orth 2022-02-16 18:14:14 +01:00
parent 086f2f73f4
commit 8d0b82c37c
17 changed files with 220 additions and 42 deletions

View file

@ -371,6 +371,10 @@ impl WlSeatGlobal {
self.shortcuts.set((mods.0, keysym.0), mods);
}
pub fn remove_shortcut(&self, mods: Modifiers, keysym: KeySym) {
self.shortcuts.remove(&(mods.0, keysym.0));
}
pub fn trigger_tree_changed(&self) {
self.tree_changed.trigger();
}