Skip to content

Commit

Permalink
Update Panel.vala
Browse files Browse the repository at this point in the history
  • Loading branch information
teamcons authored Nov 30, 2024
1 parent da2d278 commit c446fb2
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 () > 1) { //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 c446fb2

Please sign in to comment.