mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-23 20:47:25 -08: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)
|
if (e.Delta.Y < 0)
|
||||||
launcherTabsScroller.LineRight();
|
launcherTabsScroller.LineRight();
|
||||||
else
|
else if (e.Delta.Y > 0)
|
||||||
launcherTabsScroller.LineLeft();
|
launcherTabsScroller.LineLeft();
|
||||||
e.Handled = true;
|
e.Handled = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue