Remove setTextInputEnabled workaround on Android

This commit is contained in:
Joshua Granick
2020-03-03 12:34:18 -08:00
committed by GitHub
parent 62ed5c2cb9
commit 5a99ef3175

View File

@@ -541,17 +541,6 @@ class NativeWindow
#if (!macro && lime_cffi)
NativeCFFI.lime_window_set_text_input_enabled(handle, value);
#end
#if android
if (!value)
{
var updateSystemUI = JNI.createStaticMethod("org/haxe/lime/GameActivity", "updateSystemUI", "()V");
JNI.postUICallback(function()
{
updateSystemUI();
});
}
#end
}
return value;