mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 00:13:30 +00:00
Fixes Android FileDialog
- Go up was not working, simplify was used one time too much - Added GestureHandler - Added doubleTap to recognize open dir - Fixed scroll where sometimes the scroll jumped between start and end when pointer was outside or on the edge of the scroll area
This commit is contained in:
parent
abefd42e84
commit
b1b308411a
8 changed files with 160 additions and 1 deletions
|
@ -110,7 +110,6 @@ String DirAccessJAndroid::get_drive(int p_drive) {
|
|||
Error DirAccessJAndroid::change_dir(String p_dir) {
|
||||
|
||||
JNIEnv *env = ThreadAndroid::get_env();
|
||||
p_dir = p_dir.simplify_path();
|
||||
|
||||
if (p_dir == "" || p_dir == "." || (p_dir == ".." && current_dir == ""))
|
||||
return OK;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue