The Trunk: System-mt.1527.mcz

[email protected] Mon, 27 Jul 2026 15:32:07 0000
Newsgroups gmane.comp.lang.smalltalk.squeak.general
Message-ID <[email protected]>
Marcel Taeumel uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-mt.1527.mcz

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

Name: System-mt.1527
Author: mt
Time: 27 July 2026, 5:32:06.301035 pm
UUID: 4bd3a5fe-bb15-7b46-8d10-a93c67fa8cda
Ancestors: System-mt.1526

For the start-up balloon in a fresh release image, add means to scale-up the balloon graphics. Complements #scaleIconToDisplay.

=============== Diff against System-mt.1526 ===============

Item was added:
+ ----- Method: Form>>scaleFormToDisplay (in category '*System-icon scaling') -----
+ scaleFormToDisplay
+ 	"Scale bitmap graphics to the current display scale factor. Assume that the receiver is meant to be displayed at factor 1.0. For performance reasons, does not return a copy if there is no scaling of the receiver necessary."
+ 
+ 	| scaleFactor |
+ 	^ (scaleFactor := RealEstateAgent scaleFactor) = 1.0
+ 		ifTrue: [self]
+ 		ifFalse: [self scaledToSize: self extent * scaleFactor]!

Squeak-dev mailing list -- [email protected]
To unsubscribe send an email to [email protected]