We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cef333a commit 9e45da5Copy full SHA for 9e45da5
src/Widgets/MultitaskingView/WorkspaceRow.vala
@@ -42,6 +42,11 @@ public class Gala.WorkspaceRow : ActorTarget {
42
}
43
44
45
+ public override bool move_focus (FocusDirection direction) {
46
+ var focusable = (Focusable) get_child_at_index ((int) (-get_current_commit (SWITCH_WORKSPACE)));
47
+ return focusable.focus (direction);
48
+ }
49
+
50
private void update_order () {
51
for (var child = get_first_child (); child != null; child = child.get_next_sibling ()) {
52
unowned var workspace_clone = (WorkspaceClone) child;
0 commit comments