windowManager: Allow moving a window above the top workspace
When using dynamic workspaces, a new workspace will be appended when moving a window down to the last (empty) workspace. It makes sense to extend the behavior in the opposite direction, and prepend a new workspace when moving a window up from the first workspace. https://bugzilla.gnome.org/show_bug.cgi?id=665764
This commit is contained in:
parent
0bfaa5c6a3
commit
ce35d523a2
@ -1527,6 +1527,11 @@ const WindowManager = new Lang.Class({
|
||||
direction = Meta.MotionDirection.DOWN;
|
||||
newWs = screen.get_workspace_by_index(screen.n_workspaces - 1);
|
||||
} else if (isNaN(target)) {
|
||||
// Prepend a new workspace dynamically
|
||||
if (screen.get_active_workspace_index() == 0 &&
|
||||
action == 'move' && target == 'up')
|
||||
this.insertWorkspace(0);
|
||||
|
||||
direction = Meta.MotionDirection[target.toUpperCase()];
|
||||
newWs = screen.get_active_workspace().get_neighbor(direction);
|
||||
} else if (target > 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user