Skip to content
This repository was archived by the owner on Oct 26, 2021. It is now read-only.

Commit fcaf011

Browse files
authored
Update SimpleFlatModMenu.cs
1 parent 62dae52 commit fcaf011

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SimpleFlatModMenu.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ public static void MyGUI()
6161
// Normal: += Event.current.delta.y;
6262
imageRect.y -= Event.current.delta.y;
6363

64-
// Menu will not appear if dragging menu more than 0.2 sec.
64+
// Menu will not appear if dragging menu more than 0.4 sec.
6565
// This is to solve tapping sensitive issue.
6666
time += Time.deltaTime;
67-
if (time > 0.5f)
67+
if (time > 0.4f)
6868
{
6969
ifDragged = true;
7070
}

0 commit comments

Comments
 (0)