Fixed minimization

This commit is contained in:
Anuken 2019-08-20 20:47:28 -04:00
parent be32810608
commit 66ff7b1592
3 changed files with 1 additions and 8 deletions

View File

@ -1 +0,0 @@
1127400

View File

@ -38,19 +38,14 @@
"sun/awt", "sun/awt",
"sun/instrument", "sun/instrument",
"sun/security/tools", "sun/security/tools",
"sun/security/x509",
"sun/security/smartcardio", "sun/security/smartcardio",
"sun/audio", "sun/audio",
"org",
"java/sql",
"javax",
"javax/xml", "javax/xml",
"javax/sound", "javax/sound",
"javax/script", "javax/script",
"java/beans", "java/beans",
"java/applet", "java/applet",
"java/rmi", "java/rmi",
"java/lang/invoke",
"com/sun/naming", "com/sun/naming",
"java/awt", "java/awt",
"com/sun/org/apache/xpath", "com/sun/org/apache/xpath",

View File

@ -40,7 +40,7 @@ public class IOSLauncher extends IOSApplication.Delegate{
@Override @Override
public void shareFile(FileHandle file){ public void shareFile(FileHandle file){
Log.info("Attempting to share file " + file); Log.info("Attempting to share file " + file);
FileHandle to = Core.files.absolute(getDocumentsDirectory()).child(file.name()/* + ".png"*/); FileHandle to = Core.files.absolute(getDocumentsDirectory()).child(file.name());
file.copyTo(to); file.copyTo(to);
NSURL url = new NSURL(to.file()); NSURL url = new NSURL(to.file());
@ -53,7 +53,6 @@ public class IOSLauncher extends IOSApplication.Delegate{
@Override @Override
public void beginForceLandscape(){ public void beginForceLandscape(){
Log.info("begin force landscape");
forced = true; forced = true;
UINavigationController.attemptRotationToDeviceOrientation(); UINavigationController.attemptRotationToDeviceOrientation();
} }