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

[NUI] Add log for DispatchParentGestureEvents and DispatchGestureEvents #6101

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/Tizen.NUI/src/public/BaseComponents/ViewEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1764,6 +1764,7 @@ private void ConfigGestureDetector(bool dispatch)
private void OnGestureDetected(object source, EventArgs e)
{
// Does notting. This is to consume the gesture.
NUILog.Debug("If DispatchParentGestureEvents is false, it can not dispatch gesture.");
}

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,7 @@ private void OnLongPressGestureDetected(IntPtr actor, IntPtr longPressGesture)
// If DispatchGestureEvents is false, no gesture events are dispatched.
if (e.View != null && e.View.DispatchGestureEvents == false)
{
NUILog.Debug("If DispatchGestureEvents is false, no gesture events are dispatched");
return;
}

Expand Down
1 change: 1 addition & 0 deletions src/Tizen.NUI/src/public/Events/PanGestureDetector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -642,6 +642,7 @@ private void OnPanGestureDetected(IntPtr actor, IntPtr panGesture)
// If DispatchGestureEvents is false, no gesture events are dispatched.
if (e.View != null && e.View.DispatchGestureEvents == false)
{
NUILog.Debug("If DispatchGestureEvents is false, no gesture events are dispatched");
return;
}

Expand Down
1 change: 1 addition & 0 deletions src/Tizen.NUI/src/public/Events/PinchGestureDetector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ private void OnPinchGestureDetected(IntPtr actor, IntPtr pinchGesture)
// If DispatchGestureEvents is false, no gesture events are dispatched.
if (e.View != null && e.View.DispatchGestureEvents == false)
{
NUILog.Debug("If DispatchGestureEvents is false, no gesture events are dispatched");
return;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ private void OnRotationGestureDetected(IntPtr actor, IntPtr rotationGesture)
// If DispatchGestureEvents is false, no gesture events are dispatched.
if (e.View != null && e.View.DispatchGestureEvents == false)
{
NUILog.Debug("If DispatchGestureEvents is false, no gesture events are dispatched");
return;
}

Expand Down
1 change: 1 addition & 0 deletions src/Tizen.NUI/src/public/Events/TapGestureDetector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,7 @@ private void OnTapGestureDetected(IntPtr actor, IntPtr tapGesture)
// If DispatchGestureEvents is false, no gesture events are dispatched.
if (e.View != null && e.View.DispatchGestureEvents == false)
{
NUILog.Debug("If DispatchGestureEvents is false, no gesture events are dispatched");
return;
}

Expand Down
Loading