Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DoubleTapped event is fired only once until the poiner is moved #6949

Closed
Al-Dyachkov opened this issue Nov 15, 2021 · 0 comments · Fixed by #7213
Closed

DoubleTapped event is fired only once until the poiner is moved #6949

Al-Dyachkov opened this issue Nov 15, 2021 · 0 comments · Fixed by #7213
Labels
bug help-wanted A contribution from the community would be most welcome.

Comments

@Al-Dyachkov
Copy link
Contributor

Al-Dyachkov commented Nov 15, 2021

Describe the bug
DoubleTapped is fired only once until the poiner is moved

To Reproduce

  1. Create simple avalonia app
  2. Add window double tap handler
private int _counter;
private void InputElement_OnDoubleTapped(object? sender, TappedEventArgs e)
{
    Title = (_counter++).ToString();
}
  1. Start app & Double-Tap window several times without moving pointer
  2. Counter is incremented only once;

Expected behavior
Counter should increment on each double-tap

Desktop (please complete the following information):

  • OS: Windows10, XUbuntu 20.04
  • Version : 0.10.10
@maxkatz6 maxkatz6 added the help-wanted A contribution from the community would be most welcome. label Nov 19, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug help-wanted A contribution from the community would be most welcome.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants