<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 very much! Should we also make any efforts to preserve custom window colors as well? Sometimes I use them for distinguishing different windows (as some rough labels, "snippets" vs "upstream issues" vs "todo notes") ... :-)</p>
<p><br>
</p>
<p>Best,</p>
<p>Christoph</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> Donnerstag, 27. Januar 2022 12:08:16<br>
<b>An:</b> squeak-dev@lists.squeakfoundation.org; packages@lists.squeakfoundation.org<br>
<b>Betreff:</b> [squeak-dev] The Trunk: Morphic-mt.1860.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.1860.mcz">http://source.squeak.org/trunk/Morphic-mt.1860.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: Morphic-mt.1860<br>
Author: mt<br>
Time: 27 January 2022, 12:08:10.671541 pm<br>
UUID: 1e06e708-c328-da42-9f3d-a8cbc99ea089<br>
Ancestors: Morphic-mt.1859<br>
<br>
Tweaks Morphic-mt.1859 a little bit more to preserve *all* custom window titles when changing UI themes or scale factors.<br>
<br>
=============== Diff against Morphic-mt.1859 ===============<br>
<br>
Item was changed:<br>
  ----- Method: StringMorph>>acceptContents (in category 'editing') -----<br>
  acceptContents<br>
         "The message is sent when the user hits enter or Cmd-S. Accept the current contents and end editing. This default implementation updates the model's known window title for pluggable windows."<br>
  <br>
         self containingWindow ifNotNil: [:wnd |<br>
+                wnd setLabel: self contents. "Needed for models that do not accept changes."<br>
                 (wnd respondsTo: #getLabelSelector) ifTrue: [<br>
                         wnd getLabelSelector ifNotNil: [:selector |<br>
                                 | mutator |<br>
                                 mutator := selector asSimpleSetter.<br>
                                 (wnd model respondsTo: mutator) ifTrue: [<br>
                                         wnd model perform: mutator with: self contents]]]]!<br>
<br>
Item was changed:<br>
+ (PackageInfo named: 'Morphic') postscript: '"Fixes custom edits that were not propagated properly to pluggable windows."<br>
+ StringMorph allInstances do: [:ea | ea acceptContents].'!<br>
- (PackageInfo named: 'Morphic') postscript: '"Fix missing command key shortcuts such as [cmd]+[+/-] for scale changes."<br>
- Project allMorphicProjects do: [:p | p world initializeDesktopCommandKeySelectors].<br>
- <br>
- "New ''scale factor'' menu"<br>
- TheWorldMainDockingBar updateInstances.<br>
- <br>
- "Enable ''Enclose selection with brackets'' by default (Morphic-mt.1812)"<br>
- TextEditor encloseSelection: true.'!<br>
<br>
<br>
</div>
</span></font>
</body>
</html>