mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 04:34:59 +00: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…
Add table
Add a link
Reference in a new issue