Skip to content
Snippets Groups Projects
Commit 89b3e9a7 authored by Tobias Schöner's avatar Tobias Schöner
Browse files

fix: Andorid: FactExplorer will not open during drag

parent 8022f5a8
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@ private void Update()
#region Implementation
private void HandleTouches()
{
if (Input.touchCount != 1)
if (Input.touchCount != 1 || transform.GetComponent<DragHandling>().dragged)
{
pressTime = 0;
return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment