Skip to content

Commit

Permalink
Small changes here and there
Browse files Browse the repository at this point in the history
  • Loading branch information
teamcons committed Nov 30, 2024
1 parent c3fdcb8 commit 53e526b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Widgets/Panel.vala
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public class Wingpanel.Widgets.Panel : Gtk.EventBox {

current_scroll_delta += dx + dy;

if (current_scroll_delta.abs () > 3) { //TODO: Check whether 10 is good here.
if (current_scroll_delta.abs () > 2) { //TODO: Check whether 10 is good here.
current_scroll_delta = 0;
}
});
Expand Down

0 comments on commit 53e526b

Please sign in to comment.