Skip to content

Commit

Permalink
fix: #1526
Browse files Browse the repository at this point in the history
  • Loading branch information
NaBian committed Mar 5, 2024
1 parent 8a46a83 commit 8d4d113
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Shared/HandyControl_Shared/Input/SimpleMouseBinding.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace HandyControl.Input;
internal sealed class SimpleMouseBinding : InputBinding
{
public static readonly DependencyProperty MouseActionProperty = DependencyProperty.Register(nameof(MouseAction),
typeof(MouseAction), typeof(MouseBinding), new UIPropertyMetadata(MouseAction.None, OnMouseActionPropertyChanged));
typeof(MouseAction), typeof(SimpleMouseBinding), new UIPropertyMetadata(MouseAction.None, OnMouseActionPropertyChanged));

private bool _settingGesture;

Expand Down

0 comments on commit 8d4d113

Please sign in to comment.