Parially refactor commands to take a *Seat

This commit is contained in:
Isaac Freund
2020-04-13 19:25:37 +02:00
parent b822084f39
commit 3cb52c4898
4 changed files with 116 additions and 115 deletions

View File

@ -145,7 +145,8 @@ pub const View = struct {
// If the view being unmapped is focused
if (current_focus == view) {
// Focus the previous view. This clears the focus if there are no visible views.
root.focusPrevView();
// FIXME: must be fixed in next commit adding focus stack
//root.focusPrevView();
}
}