[fixed FIX] Morphic Restore Display

Bert Freudenberg bert at isgnw.CS.Uni-Magdeburg.De
Thu Mar 4 08:30:01 UTC 1999


On Thu, 4 Mar 1999, Bert Freudenberg wrote:

> "Change Set:		RestoreDisplay-bf
> Date:			4 March 1999
> Author:			Bert Freudenberg
> 
> "The Restore display menu item in Morphic did not update the screen size.
> Fixed by sending restoreDisplay to a ScreenController even when in
> Morphic."

Ouch! How did this double quote get into the comment? 
You can't file in that. Next time I'll check before sending, promised.
Attached again.

/bert

-- 
 Bert Freudenberg                                            Department of
                                                            Simulation and
 mailto:bert at isg.cs.uni-magdeburg.de                     Computer Graphics
 http://isgwww.cs.uni-magdeburg.de/isg/bert.html        Univ. of Magdeburg

Content-Type: TEXT/PLAIN; charset=US-ASCII; name="RestoreDisplay-bf.cs"
Content-ID: <Pine.LNX.3.96.990304093001.22895C at balloon.cs.uni-magdeburg.de>
Content-Description: 

'From Squeak 2.3 of January 14, 1999 on 4 March 1999 at 9:09:39 am'!
"Change Set:		RestoreDisplay-bf
Date:			4 March 1999
Author:			Bert Freudenberg

The Restore display menu item in Morphic did not update the screen size. Fixed by sending restoreDisplay to a ScreenController even when in Morphic."!


!HandMorph methodsFor: 'world menu' stamp: 'bf 3/4/1999 09:03'!
buildWorldMenu
	"Build the meta menu for the world."
	| menu |
	menu _ MenuMorph new defaultTarget: self.
	menu addStayUpItem.
	menu add: 'previous project' target: owner action: #goBack.
	menu add: 'jump to project...' action: #jumpToProject.
	menu add: 'restore display' target: ScreenController new action: #restoreDisplay.

	menu addLine.
	menu add: 'new morph...' action: #newMorph.
	menu add: 'authoring tools...' action: #scriptingDo.
	menu add: 'remote...' action: #remoteDo.
	menu add: 'debug...' action: #debugDo.

	menu addLine.
	menu add: 'open...' action: #openWindow.
	menu add: 'windows...' action: #windowsDo.
	menu add: 'changes...' action: #changesDo.
	menu add: 'help...' action: #helpDo.
	menu add: 'do...' target: Utilities action: #offerCommonRequests.

	menu addLine.
	menu add: 'save' action: #saveSession.
	menu add: 'save as...' action: #saveAs.
	menu add: 'save and quit' action: #saveAndQuit.
	menu add: 'quit' action: #quitSession.

	^ menu! !





More information about the Squeak-dev mailing list