<div id="__MailbirdStyleContent" style="font-size: 10pt;font-family: Arial;color: #000000;text-align: left" dir="ltr">
                                        > <span style="font-family: Calibri, Helvetica, sans-serif;font-size: 16px"> Should we also make any efforts to preserve custom window colors as well?</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. Things that are controlled by the UI theme are meant to be reset all over the place. The only way you have is to set<br><br>aMorph </span><span style="font-family: Calibri, Helvetica, sans-serif"><span style="font-size: 16px">setProperty: #noUserInterfaceTheme toValue: true.</span></span></div><div><span style="font-family: Calibri, Helvetica, sans-serif"><span style="font-size: 16px"><br></span></span></div><div><span style="font-family: Calibri, Helvetica, sans-serif"><span style="font-size: 16px">Then that morph will be ignored in the next update. You now have to figure out the morphs you want to skip. For example, you cannot just change #</span></span><span style="font-family: Calibri, Helvetica, sans-serif"><span style="font-size: 16px">setWindowColor: because that is also used programmatically, maybe in the update process.</span></span></div><div><br></div><div><span style="font-family: Calibri, Helvetica, sans-serif"><span style="font-size: 16px">Best,</span></span></div><div><span style="font-family: Calibri, Helvetica, sans-serif"><span style="font-size: 16px">Marcel</span></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 06.02.2022 19:14:51 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>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"><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> 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</span>
<div> </div>
</div>
</div>
<span style="font-size: 10pt"><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></span>
</div></blockquote></div>