Add panning to ScrollPanel when TouchUI is enabled

This commit is contained in:
Tamás Bálint Misius
2024-02-06 14:14:00 +01:00
parent 69e0a8b0aa
commit 588fe293ec
4 changed files with 68 additions and 3 deletions

View File

@@ -55,6 +55,7 @@ lldb_server=${LLDB_SERVER:-$default_lldb_server}
lldb_server_port=${LLDB_SERVER_PORT:-9998}
jdb_port=${JDB_PORT:-13456}
lldb_client=${LLDB_CLIENT:-$default_lldb_client}
meson=${MESON:-meson}
adb=${ADB:-adb}
jdb=${JDB:-jdb}
@@ -113,6 +114,11 @@ Naturally, replace bagelsbagels with an appropriate password.
HELP
exit 1
fi
>&2 echo "[+] meson compiling android/$app_exe.apk"
if ! $meson compile sign-apk; then
>&2 echo "[-] failed"
return 1
fi
>&2 echo "[+] adb installing android/$app_exe.apk"
if ! $adb install android/$app_exe.apk; then
>&2 echo "[-] failed"