Use fixed orientation to prevent rendering issues

This commit is contained in:
drdev
2015-05-25 19:56:25 +00:00
parent 8d151174ab
commit d3bf508fc7
4 changed files with 20 additions and 9 deletions

View File

@@ -63,5 +63,10 @@ public class Main {
public boolean isTablet() {
return true; //treat desktop the same as a tablet
}
@Override
public void setLandscapeMode(boolean landscapeMode) {
//TODO: Consider supporting toggling this on desktop for testing
}
}
}