Skip to content

Commit

Permalink
Use Enum DOWN instead of LEFT to scroll in a left-wards direction (cl…
Browse files Browse the repository at this point in the history
…oses #541) (#542)
  • Loading branch information
fossfreedom authored and JoshStrobl committed Jun 21, 2024
1 parent 65e24a0 commit 5758557
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/panel/applets/workspaces/WorkspacesApplet.vala
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ namespace Workspaces {

unowned libxfce4windowing.Workspace current = workspace_group.get_active_workspace();
unowned libxfce4windowing.Workspace? next = current.get_neighbor(
(down) ? libxfce4windowing.Direction.RIGHT : libxfce4windowing.Direction.LEFT
(down) ? libxfce4windowing.Direction.RIGHT : libxfce4windowing.Direction.DOWN
);

if (next != null) {
Expand Down

0 comments on commit 5758557

Please sign in to comment.