[squeak-dev] The Trunk: Morphic-mt.1671.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Jul 15 09:38:18 UTC 2020


Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.1671.mcz

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

Name: Morphic-mt.1671
Author: mt
Time: 15 July 2020, 11:38:13.811718 am
UUID: a357cbeb-ab17-48d7-b9cd-32c9c64d50f9
Ancestors: Morphic-mt.1670

Fixes demo/hi-dpi mode for system progress bar.

=============== Diff against Morphic-mt.1670 ===============

Item was changed:
  ----- Method: SystemProgressMorph class>>applyUserInterfaceTheme (in category 'preferences') -----
  applyUserInterfaceTheme
  
+ 	self initialize; reset.!
- 	self reset.!

Item was changed:
  ----- Method: SystemProgressMorph class>>initialize (in category 'class initialization') -----
  initialize
  	"SystemProgressMorph initialize; reset"
+ 	
+ 	BarHeight := (8 * RealEstateAgent scaleFactor) rounded.
+ 	BarWidth := (300 * RealEstateAgent scaleFactor) rounded.
+ 	Inset := ((30 at 30) * RealEstateAgent scaleFactor) rounded.!
- 	BarHeight := 8.
- 	BarWidth := 300.
- 	Inset := 30 at 30!



More information about the Squeak-dev mailing list