<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Exchange Server">
<!-- converted from text --><style><!-- .EmailQuote { margin-left: 1pt; padding-left: 4pt; border-left: #800000 2px solid; } --></style>
</head>
<body>
<meta content="text/html; charset=UTF-8">
<style type="text/css" style="">
<!--
p
        {margin-top:0;
        margin-bottom:0}
-->
</style>
<div dir="ltr">
<div id="x_divtagdefaultwrapper" dir="ltr" style="font-size:12pt; color:#000000; font-family:Calibri,Helvetica,sans-serif">
<p>Thank you once again! :-)</p>
</div>
<hr tabindex="-1" style="display:inline-block; width:98%">
<div id="x_divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" color="#000000" style="font-size:11pt"><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> Mittwoch, 19. Januar 2022 14:49:00<br>
<b>An:</b> squeak-dev@lists.squeakfoundation.org; packages@lists.squeakfoundation.org<br>
<b>Betreff:</b> [squeak-dev] The Trunk: Morphic-mt.1849.mcz</font>
<div> </div>
</div>
</div>
<font size="2"><span style="font-size:10pt;">
<div class="PlainText">Marcel Taeumel uploaded a new version of Morphic to project The Trunk:<br>
<a href="http://source.squeak.org/trunk/Morphic-mt.1849.mcz">http://source.squeak.org/trunk/Morphic-mt.1849.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: Morphic-mt.1849<br>
Author: mt<br>
Time: 19 January 2022, 2:48:54.503764 pm<br>
UUID: c545f07c-1d2d-9949-937b-e576cc62f044<br>
Ancestors: Morphic-mt.1848<br>
<br>
Makes #getSelection in text fields more robust against models that are not initialized correctly.<br>
<br>
=============== Diff against Morphic-mt.1848 ===============<br>
<br>
Item was changed:<br>
  ----- Method: PluggableTextMorph>>getSelection (in category 'model access') -----<br>
  getSelection<br>
+        "Answer the model's selection interval. Default to the null selection if path to model unknown or model not initialized correctly."<br>
-        "Answer the model's selection interval."<br>
  <br>
+        ^ getSelectionSelector<br>
+                ifNil: [1 to: 0]<br>
+                ifNotNil: [(model perform: getSelectionSelector) ifNil: [1 to: 0]]!<br>
-        getSelectionSelector ifNil: [^1 to: 0]. "null selection"<br>
-        ^model perform: getSelectionSelector!<br>
<br>
<br>
</div>
</span></font>
</body>
</html>