|
@@ -120,14 +120,14 @@ namespace GFGGame
|
|
|
|
|
|
private void onTouchBegin(EventContext context)
|
|
|
{
|
|
|
- LogUtil.LogEditor("onTouchBegin");
|
|
|
+ //LogUtil.LogEditor("onTouchBegin");
|
|
|
listScrolled = false;
|
|
|
longPressed = false;
|
|
|
}
|
|
|
|
|
|
private void OnListScroll(EventContext context)
|
|
|
{
|
|
|
- LogUtil.LogEditor("OnListScroll");
|
|
|
+ //LogUtil.LogEditor("OnListScroll");
|
|
|
listScrolled = true;
|
|
|
}
|
|
|
|
|
@@ -307,7 +307,7 @@ namespace GFGGame
|
|
|
|
|
|
private void OnClickPartsListItem(EventContext context)
|
|
|
{
|
|
|
- LogUtil.LogEditor("OnClickPartsListItem");
|
|
|
+ //LogUtil.LogEditor("OnClickPartsListItem");
|
|
|
if (longPressed) return;
|
|
|
if (ViewManager.isViewOpen(typeof(DressUpItemTipsView).FullName))
|
|
|
{
|
|
@@ -406,7 +406,7 @@ namespace GFGGame
|
|
|
|
|
|
private void OnLongPress(EventContext context)
|
|
|
{
|
|
|
- LogUtil.LogEditor($"OnLongPress {listScrolled}");
|
|
|
+ //LogUtil.LogEditor($"OnLongPress {listScrolled}");
|
|
|
if (listScrolled) return;
|
|
|
longPressed = true;
|
|
|
LongPressGesture gesture = (LongPressGesture)context.sender;
|