Convenience method, should only be called by PSurface subclasses.
()
| 11073 | |
| 11074 | /** Convenience method, should only be called by PSurface subclasses. */ |
| 11075 | static public void hideMenuBar() { |
| 11076 | if (PApplet.platform == PConstants.MACOSX) { |
| 11077 | // Call some native code to remove the menu bar on OS X. Not necessary |
| 11078 | // on Linux and Windows, who are happy to make full screen windows. |
| 11079 | japplemenubar.JAppleMenuBar.hide(); |
| 11080 | } |
| 11081 | } |
| 11082 | |
| 11083 | |
| 11084 | /** |
no test coverage detected