mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
fix: Fixed ScrollViewer rebounding when scrolling to the right
This commit is contained in:
parent
3fffb0b229
commit
e5516b5b9f
1 changed files with 1 additions and 1 deletions
|
@ -232,7 +232,7 @@ namespace SourceGit.Views
|
|||
{
|
||||
if (e.Delta.Y < 0)
|
||||
launcherTabsScroller.LineRight();
|
||||
else
|
||||
else if (e.Delta.Y > 0)
|
||||
launcherTabsScroller.LineLeft();
|
||||
e.Handled = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue