mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-02-03 12:53:48 +07:00
Fixed minimization
This commit is contained in:
parent
be32810608
commit
66ff7b1592
@ -1 +0,0 @@
|
||||
1127400
|
@ -38,19 +38,14 @@
|
||||
"sun/awt",
|
||||
"sun/instrument",
|
||||
"sun/security/tools",
|
||||
"sun/security/x509",
|
||||
"sun/security/smartcardio",
|
||||
"sun/audio",
|
||||
"org",
|
||||
"java/sql",
|
||||
"javax",
|
||||
"javax/xml",
|
||||
"javax/sound",
|
||||
"javax/script",
|
||||
"java/beans",
|
||||
"java/applet",
|
||||
"java/rmi",
|
||||
"java/lang/invoke",
|
||||
"com/sun/naming",
|
||||
"java/awt",
|
||||
"com/sun/org/apache/xpath",
|
||||
|
@ -40,7 +40,7 @@ public class IOSLauncher extends IOSApplication.Delegate{
|
||||
@Override
|
||||
public void shareFile(FileHandle 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);
|
||||
|
||||
NSURL url = new NSURL(to.file());
|
||||
@ -53,7 +53,6 @@ public class IOSLauncher extends IOSApplication.Delegate{
|
||||
|
||||
@Override
|
||||
public void beginForceLandscape(){
|
||||
Log.info("begin force landscape");
|
||||
forced = true;
|
||||
UINavigationController.attemptRotationToDeviceOrientation();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user