<body><div id="__MailbirdStyleContent" style="font-size: 10pt;font-family: Arial;color: #000000">
                                        Hmm... we might want to change all "getters" into lazy initializers? #leftFraction, #rightFraction, ... or at least return "0" on "ifNil"?<div><br></div><div>Best,</div><div>Marcel</div><div class="mb_sig"></div><blockquote class="history_container" type="cite" style="border-left-style:solid;border-width:1px; margin-top:20px; margin-left:0px;padding-left:10px;">
                        <p style="color: #AAAAAA; margin-top: 10px;">Am 30.12.2019 00:11:53 schrieb Jakob Reschke <forums.jakob@resfarm.de>:</p><div style="font-family:Arial,Helvetica,sans-serif">
<div dir="ltr">For some reason I encounter LayoutFrames with nil in the right and bottom variables... 

 of course, these don't understand printOn:maxDecimalPlaces:.</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Am Do., 17. Jan. 2019 um 11:19 Uhr schrieb <<a href="mailto:commits@source.squeak.org">commits@source.squeak.org</a>>:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Marcel Taeumel uploaded a new version of Graphics to project The Trunk:<br>
<a href="http://source.squeak.org/trunk/Graphics-mt.406.mcz" rel="noreferrer" target="_blank">http://source.squeak.org/trunk/Graphics-mt.406.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: Graphics-mt.406<br>
Author: mt<br>
Time: 17 January 2019, 11:18:39.003727 am<br>
UUID: 027d00a7-113d-4b9f-aaec-79e3373339c1<br>
Ancestors: Graphics-mt.405<br>
<br>
Adds an informative string representation for LayoutFrame to support layout design and debugging.<br>
<br>
=============== Diff against Graphics-mt.405 ===============<br>
<br>
Item was added:<br>
+ ----- Method: LayoutFrame>>printOn: (in category 'printing') -----<br>
+ printOn: aStream<br>
+ <br>
+       super printOn: aStream.<br>
+       <br>
+       aStream nextPutAll: '( '.<br>
+       <br>
+       { {'l'. self leftFraction. self leftOffset}. {'t'. self topFraction. self topOffset}. {'r'. self rightFraction. self rightOffset}. {'b'. self bottomFraction. self bottomOffset} } do: [:spec |<br>
+               aStream nextPutAll: spec first; space.<br>
+               <br>
+               spec second printOn: aStream maxDecimalPlaces: 2.<br>
+               <br>
+               aStream nextPutAll: ((spec third ifNil: [0]) >= 0 ifTrue: ['+'] ifFalse: ['-']).<br>
+               (spec third ifNil: [0]) abs printOn: aStream maxDecimalPlaces: 0]<br>
+                       separatedBy: [aStream space].<br>
+                       <br>
+       aStream nextPutAll: ' )'.!<br>
<br>
<br>
</blockquote></div>
</div></blockquote>
                                        </div></body>