instead of going through NSView's API. The latter does offer more options, but messes up the fullscreen mode for some reason (UI becomes unresponsive because input events are no longer received). Using Please test and review! You can view, comment on, or merge this pull request online at:https://github.com/OpenSmalltalk/opensmalltalk-vm/pull/478 Commit Summary
File ChangesPatch Links:
— |
@nicolas-cellier-aka-nice commented on this pull request. In platforms/iOS/vm/OSX/sqSqueakOSXMetalView.m: > @@ -48,6 +48,7 @@ extern SqueakOSXAppDelegate *gDelegateApp; extern struct VirtualMachine* interpreterProxy; +extern int getFullScreenFlag(); Just a detail, but should be sqInt — |
In reply to this post by David T Lewis
@fniephaus commented on this pull request. In platforms/iOS/vm/OSX/sqSqueakOSXMetalView.m: > @@ -48,6 +48,7 @@ extern SqueakOSXAppDelegate *gDelegateApp; extern struct VirtualMachine* interpreterProxy; +extern int getFullScreenFlag(); Have you given the PR a try locally? — |
In reply to this post by David T Lewis
@eliotmiranda commented on this pull request. Personally I loathe and despise (fullScreen == 0) Correct C is !fullScreen. ;-) And getFullScreenFlag() == (fullScreen == 1) is better written as getFullScreenFlag() == (fullScreen != 0) (or occasionally one will see getFullScreenFlag() == !!fullScreen). — |
In reply to this post by David T Lewis
@eliotmiranda approved this pull request. — |
In reply to this post by David T Lewis
@fniephaus pushed 1 commit.
— |
In reply to this post by David T Lewis
Merged #478 into Cog. — |
Free forum by Nabble | Edit this page |