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/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",
|
||||||
|
@ -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();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user