[squeak-dev] The Inbox: MonticelloConfigurations-RJT.163.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Jul 18 17:47:17 UTC 2020


A new version of MonticelloConfigurations was added to project The Inbox:
http://source.squeak.org/inbox/MonticelloConfigurations-RJT.163.mcz

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

Name: MonticelloConfigurations-RJT.163
Author: RJT
Time: 18 July 2020, 1:47:16.459316 pm
UUID: 87d7467d-cc80-7c4a-95a8-2a02c20366e1
Ancestors: MonticelloConfigurations-mt.162

Fix the up and down button (to change the load order) of Monticell Configurations so that it automatically selects the package that is moved.  This allows you to push the button more than once without having to select the package again.

=============== Diff against MonticelloConfigurations-mt.162 ===============

Item was changed:
  ----- Method: MCConfigurationBrowser>>down (in category 'actions') -----
  down
  	self canMoveDown ifTrue: [
  		self list swap: self index with: self index + 1.
- 		self index: self index + 1.
  		self changedList.
+ 		self index: self index + 1.
+ 
  	].
  !

Item was changed:
  ----- Method: MCConfigurationBrowser>>up (in category 'actions') -----
  up
  	self canMoveUp ifTrue: [
  		self list swap: self index with: self index - 1.
- 		self index: self index - 1.
  		self changedList.
+ 		self index: self index -1.
  	].!



More information about the Squeak-dev mailing list