input: Move windows between workspaces
This commit is contained in:
parent
5b2ea80c50
commit
f7ac9654d1
6 changed files with 38 additions and 4 deletions
|
|
@ -294,7 +294,14 @@ impl Common {
|
|||
.add(&handle);
|
||||
return FilterResult::Intercept(());
|
||||
}
|
||||
Action::MoveToWorkspace(num) => { /* TODO */ }
|
||||
Action::MoveToWorkspace(num) => {
|
||||
let current_output = active_output(seat, &self);
|
||||
self.shell.move_current_window(
|
||||
seat,
|
||||
¤t_output,
|
||||
*num,
|
||||
);
|
||||
}
|
||||
Action::Focus(focus) => match focus {
|
||||
_ => { /* TODO */ }
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue