Skip to content

Commit e5516b5

Browse files
committed
fix: Fixed ScrollViewer rebounding when scrolling to the right
1 parent 3fffb0b commit e5516b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Views/Launcher.axaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ private void ScrollTabs(object sender, PointerWheelEventArgs e)
232232
{
233233
if (e.Delta.Y < 0)
234234
launcherTabsScroller.LineRight();
235-
else
235+
else if (e.Delta.Y > 0)
236236
launcherTabsScroller.LineLeft();
237237
e.Handled = true;
238238
}

0 commit comments

Comments
 (0)