Fix an another compile error.

This commit is contained in:
Relintai 2022-08-19 16:54:20 +02:00
parent c48381b86c
commit b2e5cd5f2c

View File

@ -205,7 +205,7 @@ public class PandemoniumIO {
public void showKeyboard(String p_existing_text, int p_type, int p_max_input_length, int p_cursor_start, int p_cursor_end) {
if (edit != null) {
edit.showKeyboard(p_existing_text, GodotEditText.VirtualKeyboardType.values()[p_type], p_max_input_length, p_cursor_start, p_cursor_end);
edit.showKeyboard(p_existing_text, PandemoniumEditText.VirtualKeyboardType.values()[p_type], p_max_input_length, p_cursor_start, p_cursor_end);
}
//InputMethodManager inputMgr = (InputMethodManager)activity.getSystemService(Context.INPUT_METHOD_SERVICE);