<div id="__MailbirdStyleContent" style="font-size: 10pt;font-family: Arial;color: #000000">
                                        > <span style="font-family: Calibri, Helvetica, sans-serif;font-size: 16px">What is the advantage of nil fractions compared to zero fractions?</span><div><span style="font-family: Calibri, Helvetica, sans-serif;font-size: 16px"><br></span></div><div><span style="font-family: Calibri, Helvetica, sans-serif;font-size: 16px">No advantages, I think. Just additional ifNil-checks somewhere else. IMO, it should be considered a bug that there are LayoutFrame instances with "nil" fractions.</span></div><div><span style="font-family: Calibri, Helvetica, sans-serif;font-size: 16px"><br></span></div><div><span style="font-family: Calibri, Helvetica, sans-serif;font-size: 16px">Best,</span></div><div><span style="font-family: Calibri, Helvetica, sans-serif;font-size: 16px">Marcel</span></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;min-width: 500px">
                        <p style="color: #AAAAAA; margin-top: 10px;">Am 30.12.2019 14:15:28 schrieb Thiede, Christoph <christoph.thiede@student.hpi.uni-potsdam.de>:</p><div style="font-family:Arial,Helvetica,sans-serif">


<div dir="ltr">
<div id="x_divtagdefaultwrapper" dir="ltr" style="font-size: 12pt;color: #000000;font-family: Calibri,Helvetica,sans-serif">
<p>Ah yes, we had also talked about this in <a href="http://forum.world.st/LayoutFrame-printOn-tp5104021.html" class="x_OWAAutoLink">
[squeak-dev] <span style="font-size: 12pt">LayoutFrame>>#printOn:</span></a><span style="font-size: 12pt">.</span></p>
<p><span style="font-size: 12pt"><br>
</span></p>
<p><span style="font-size: 12pt">Maybe we should define whether fractions are okay to be nil here. What is the advantage of nil fractions compared to zero fractions?</span></p>
<div id="x_Signature">
<div id="x_divtagdefaultwrapper" dir="ltr" style="font-size: 12pt;color: rgb(0,0,0);font-family: Calibri,Helvetica,sans-serif,EmojiFont,"Apple Color Emoji","Segoe UI Emoji",NotoColorEmoji,"Segoe UI Symbol","Android Emoji",EmojiSymbols">
<div name="x_divtagdefaultwrapper" style="font-family: Calibri,Arial,Helvetica,sans-serif;font-size: ;margin: 0">
<div>
<div class="x__rp_T4" id="x_Item.MessagePartBody">
<div class="x__rp_U4 x_ms-font-weight-regular x_ms-font-color-neutralDark x_rpHighlightAllClass x_rpHighlightBodyClass" id="x_Item.MessageUniqueBody" style="font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif,serif,EmojiFont">
<div dir="ltr">
<div id="x_divtagdefaultwrapper"><span style="font-family: Calibri,Helvetica,sans-serif,EmojiFont,Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Segoe UI Symbol,Android Emoji,EmojiSymbols">
<div id="x_Signature">
<div style="margin:0px"><span style=""></span></div>
</div>
</span></div>
</div>
</div>
</div>
</div>
<div><span style="font-size: 10pt;color: #808080"></span></div>
</div>
</div>
</div>
</div>
<hr tabindex="-1" style="display:inline-block; width:98%">
<div id="x_divRplyFwdMsg" dir="ltr"><span style="font-family: Calibri, sans-serif;color: #000000"><b>Von:</b> Squeak-dev <squeak-dev-bounces@lists.squeakfoundation.org> im Auftrag von commits@source.squeak.org <commits@source.squeak.org><br>
<b>Gesendet:</b> Montag, 30. Dezember 2019 03:11:52<br>
<b>An:</b> squeak-dev@lists.squeakfoundation.org<br>
<b>Betreff:</b> [squeak-dev] The Inbox: Graphics-jr.425.mcz</span>
<div> </div>
</div>
</div>
<span style="font-size: 10pt"><span style="font-size: 10pt">
<div class="PlainText">A new version of Graphics was added to project The Inbox:<br>
<a href="http://source.squeak.org/inbox/Graphics-jr.425.mcz">http://source.squeak.org/inbox/Graphics-jr.425.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: Graphics-jr.425<br>
Author: jr<br>
Time: 30 December 2019, 3:11:45.845402 am<br>
UUID: 465fa95d-6a50-a84d-8b73-7e90a2b9d2b5<br>
Ancestors: Graphics-pre.424<br>
<br>
Fix message not understood when the right or bottom fraction of a LayoutFrame is nil.<br>
<br>
=============== Diff against Graphics-pre.424 ===============<br>
<br>
Item was changed:<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 ifNil: [0]) printOn: aStream maxDecimalPlaces: 2.<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>
</div>
</span></span>
</div></blockquote></div>