[squeak-dev] The Inbox: Morphic-jmg.569.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Aug 18 23:57:48 UTC 2011


A new version of Morphic was added to project The Inbox:
http://source.squeak.org/inbox/Morphic-jmg.569.mcz

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

Name: Morphic-jmg.569
Author: jmg
Time: 18 August 2011, 5:56:31.921 pm
UUID: 7546291e-f540-c443-ba99-2baf056df166
Ancestors: Morphic-cmm.568

I use the method finder all the time so it didn't make sense to me that I could access the other tools from the World Docking Bar, but I had to use the World Menu to get to the method finder.  I added an entry to the Docking Bar adding the method finder as an item to select.

=============== Diff against Morphic-cmm.568 ===============

Item was added:
+ ----- Method: TheWorldMainDockingBar>>methodFinderMenuItemOn: (in category 'submenu - tools') -----
+ methodFinderMenuItemOn: menu 
+ 
+ 	menu addItem: [:item | 
+ 		item 
+ 			contents: 'Method Finder' translated;
+ 			help: 'Open the Method Finder' translated;
+ 			icon: (self colorIcon: Preferences methodFinderWindowColor);
+ 			target: StandardToolSet;
+ 			selector: #openSelectorBrowser]!

Item was changed:
  ----- Method: TheWorldMainDockingBar>>toolsMenuOn: (in category 'construction') -----
  toolsMenuOn: aDockingBar 
  
  	aDockingBar addItem: [ :item |
  		item
  			contents: 'Tools' translated;
  			addSubMenu: [ :menu | 
  				self
  					browserMenuItemOn: menu;
  					workspaceMenuItemOn: menu;
  					transcriptMenuItemOn: menu;
+ 					testRunnerMenuItemOn: menu;
+ 					methodFinderMenuItemOn: menu.
- 					testRunnerMenuItemOn: menu.
  				menu addLine.
  				self 
  					monticelloBrowserMenuItemOn: menu;
  					monticelloConfigurationsMenuItemOn: menu;
  					simpleChangeSorterMenuItemOn: menu;
  					dualChangeSorterMenuItemOn: menu.
  				menu addLine.
  				self
  					processBrowserMenuItemOn: menu;
  					preferenceBrowserMenuItemOn: menu;
  					fileListMenuItemOn: menu.
  			] ]!




More information about the Squeak-dev mailing list