mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-10-31 13:03:20 -07:00
fix: DoubleTapped on launcherTabsScroller not triggered correctly
This commit is contained in:
parent
17e48d86fe
commit
ed39a41b61
1 changed files with 4 additions and 1 deletions
|
@ -223,7 +223,10 @@ namespace SourceGit.Views
|
|||
|
||||
private void BeginMoveWindow(object sender, PointerPressedEventArgs e)
|
||||
{
|
||||
BeginMoveDrag(e);
|
||||
if (e.ClickCount != 2)
|
||||
{
|
||||
BeginMoveDrag(e);
|
||||
}
|
||||
}
|
||||
|
||||
private void ScrollTabs(object sender, PointerWheelEventArgs e)
|
||||
|
|
Loading…
Reference in a new issue