- Make four finger touch more reliable. Fixes TTP:331266

[CL 2044741 by JJ Hoesing in Main branch]
This commit is contained in:
JJ Hoesing
2014-04-23 18:34:35 -04:00
committed by UnrealBot
parent 5afe0d4aaa
commit 5dfb74209b
2 changed files with 8 additions and 2 deletions

View File

@@ -99,6 +99,12 @@ public class GameActivity extends NativeActivity
// Called from event thread in NativeActivity
public void AndroidThunkJava_ShowConsoleWindow(String Formats)
{
if(alert.isShowing() == true)
{
Log.debug("Console already showing.");
return;
}
alert.setMessage("[Availble texture formats: " + Formats + "]");
_activity.runOnUiThread(new Runnable()
{