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

@@ -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();
}