Skip to content

Commit 2e74c72

Browse files
committed
Fix lint
1 parent 1b30878 commit 2e74c72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Widgets/MultitaskingView.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ namespace Gala {
366366
switching_workspace_with_gesture = true;
367367

368368
var upper_clamp = (direction == LEFT) ? (active_workspace.index () + 0.1) : (num_workspaces - active_workspace.index () - 0.9);
369-
var lower_clamp = (direction == RIGHT) ? -(active_workspace.index () + 0.1) : -(num_workspaces - active_workspace.index () - 0.9);
369+
var lower_clamp = (direction == RIGHT) ? - (active_workspace.index () + 0.1) : - (num_workspaces - active_workspace.index () - 0.9);
370370

371371
new GesturePropertyTransition (workspaces, workspace_gesture_tracker, "x", null, target_x) {
372372
overshoot_lower_clamp = lower_clamp,

0 commit comments

Comments
 (0)