v0.9.2b: fixed URL opening bug in Android 11, and re-final commit

This commit is contained in:
Evan Debenham
2021-03-20 17:13:33 -04:00
parent d20383935b
commit c991208b9b
5 changed files with 33 additions and 2 deletions

View File

@@ -66,6 +66,11 @@ public class DesktopPlatformSupport extends PlatformSupport {
return true; //no easy way to check this in desktop, just assume user doesn't care
}
@Override
public boolean openURI(String URI) {
return Gdx.net.openURI(URI);
}
@Override
//FIXME tinyfd_inputBox isn't a full solution for this. No support for multiline, looks ugly. Ideally we'd have an opengl-based input box
public void promptTextInput(String title, String hintText, int maxLen, boolean multiLine, String posTxt, String negTxt, TextCallback callback) {