feat(wayland): shortcut inhibit
This commit is contained in:
parent
8e7b7e586f
commit
54a69a0523
11 changed files with 360 additions and 8 deletions
|
|
@ -31,6 +31,8 @@ pub enum Action {
|
|||
OverlapNotify(Id, bool),
|
||||
/// Subsurfaces
|
||||
Subsurface(subsurface::Action),
|
||||
/// Keyboard inhibit shortcuts
|
||||
InhibitShortcuts(bool),
|
||||
}
|
||||
|
||||
impl Debug for Action {
|
||||
|
|
@ -52,6 +54,9 @@ impl Debug for Action {
|
|||
Action::Subsurface(action) => {
|
||||
f.debug_tuple("Subsurface").field(action).finish()
|
||||
}
|
||||
Action::InhibitShortcuts(v) => {
|
||||
f.debug_tuple("InhibitShortcuts").field(v).finish()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue