Hi!
It seems like the command ui.present(style = 'full_screen') no longer gives a full screen view but rather a windowed view in the updated Pythonista. Anyone else seen this? Is this a bug or new behaviour?
Hi!
It seems like the command ui.present(style = 'full_screen') no longer gives a full screen view but rather a windowed view in the updated Pythonista. Anyone else seen this? Is this a bug or new behaviour?
@superrune, yes, it is a bit of a pain.
The correct full screen argument is fullscreen, not full_sceen. Earlier the default was full screen, so it did not really matter which way you wrote it, but now it seems to be sheet (which I think is a bug).
But anyway, a quick fix is to remove the underscore.
Try ‘fullscreen’, i.e. without underscore.
I had the same problem. Fixed by discarding the underscore, as suggested. Now the documentation should be changed. It clearly states that the correct spelling is ‘full_screen’, not ‘fullscreen’.
Relieved it was such a simple fix. Thanks!!