The Trunk: System-ar.328.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: System-ar.328.mcz

commits-2
Andreas Raab uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-ar.328.mcz

==================== Summary ====================

Name: System-ar.328
Author: ar
Time: 7 May 2010, 8:53:17.052 pm
UUID: e9ff90a1-46da-a74a-b94a-068c89d902dd
Ancestors: System-ar.327, System-cbr.324

Merging System-cbr.324:

Added a method #toggleFullScreen to project. Convenient if you want to be able to switch between modes with a single menu item. Added to support a menu item to do the same in TheWorldMainDockingBar.

=============== Diff against System-ar.327 ===============

Item was added:
+ ----- Method: Project>>toggleFullScreen (in category 'menu messages') -----
+ toggleFullScreen
+ "Toggle between full screen and windowed mode."
+ self lastScreenModeSelected
+ ifTrue: [ self fullScreenOff ]
+ ifFalse: [ self fullScreenOn ]!