Skip to content

Commit dec40a3

Browse files
committed
[Tizen] Fix ButtonHandler events
1 parent 72879e5 commit dec40a3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Core/src/Handlers/Button/ButtonHandler.Tizen.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ protected override Button CreateNativeView()
1515

1616
protected override void ConnectHandler(Button nativeView)
1717
{
18-
nativeView.Released += OnButtonClicked;
19-
nativeView.Clicked += OnButtonReleased;
18+
nativeView.Released += OnButtonReleased;
19+
nativeView.Clicked += OnButtonClicked;
2020
nativeView.Pressed += OnButtonPressed;
2121
base.ConnectHandler(nativeView);
2222
}
2323

2424
protected override void DisconnectHandler(Button nativeView)
2525
{
26-
nativeView.Released -= OnButtonClicked;
27-
nativeView.Clicked -= OnButtonReleased;
26+
nativeView.Released -= OnButtonReleased;
27+
nativeView.Clicked -= OnButtonClicked;
2828
nativeView.Pressed -= OnButtonPressed;
2929
base.DisconnectHandler(nativeView);
3030
}

0 commit comments

Comments
 (0)