<div dir="ltr"><span style="font-size:16px">Why is this method send all the time ?</span><div>Do we need to filter all lists in all browsers all the time?</div><div><br><span style="font-size:16px">PluggableListMorph&gt;&gt;</span><span style="font-size:16px">indicateUnfiltered (in category &#39;filtering&#39;) ----</span><span style="font-size:16px">indicateUnfiltered</span><br style="font-size:16px"><span style="font-size:16px">     self color: Color white!</span><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Jan 10, 2016 at 6:38 PM,  <span dir="ltr">&lt;<a href="mailto:commits@source.squeak.org" target="_blank">commits@source.squeak.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">A new version of Morphic was added to project The Inbox:<br>
<a href="http://source.squeak.org/inbox/Morphic-kfr.1064.mcz" rel="noreferrer" target="_blank">http://source.squeak.org/inbox/Morphic-kfr.1064.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: Morphic-kfr.1064<br>
Author: kfr<br>
Time: 6 January 2016, 6:38:01.020914 pm<br>
UUID: b190605b-c0ac-4b6d-8239-650c69aed317<br>
Ancestors: Morphic-eem.1063<br>
<br>
Add preference backgroundColor to SystemWindows. Add preference to a a few places that where hardcoded to color white.<br>
<br>
=============== Diff against Morphic-eem.1063 ===============<br>
<br>
Item was changed:<br>
  ----- Method: PluggableListMorph&gt;&gt;indicateUnfiltered (in category &#39;filtering&#39;) -----<br>
  indicateUnfiltered<br>
+       self color: SystemWindow backgroundColor!<br>
-       self color: Color white!<br>
<br>
Item was changed:<br>
  ----- Method: ScrollPane&gt;&gt;defaultColor (in category &#39;initialization&#39;) -----<br>
  defaultColor<br>
<br>
+       ^ SystemWindow backgroundColor!<br>
-       ^ Color white !<br>
<br>
Item was changed:<br>
  MorphicModel subclass: #SystemWindow<br>
        instanceVariableNames: &#39;labelString stripes label closeBox collapseBox activeOnlyOnTop paneMorphs paneRects collapsedFrame fullFrame isCollapsed menuBox mustNotClose labelWidgetAllowance updatablePanes allowReframeHandles labelArea expandBox&#39;<br>
+       classVariableNames: &#39;BackgroundColor ClickOnLabelToEdit CloseBoxFrame CloseBoxImageFlat CloseBoxImageGradient CollapseBoxImageFlat CollapseBoxImageGradient DoubleClickOnLabelToExpand ExpandBoxFrame ExpandBoxImageFlat ExpandBoxImageGradient FocusFollowsMouse GradientWindow HideExpandButton MenuBoxFrame MenuBoxImageFlat MenuBoxImageGradient ResizeAlongEdges ReuseWindows TopWindow WindowsRaiseOnClick&#39;<br>
-       classVariableNames: &#39;ClickOnLabelToEdit CloseBoxFrame CloseBoxImageFlat CloseBoxImageGradient CollapseBoxImageFlat CollapseBoxImageGradient DoubleClickOnLabelToExpand ExpandBoxFrame ExpandBoxImageFlat ExpandBoxImageGradient FocusFollowsMouse GradientWindow HideExpandButton MenuBoxFrame MenuBoxImageFlat MenuBoxImageGradient ResizeAlongEdges ReuseWindows TopWindow WindowsRaiseOnClick&#39;<br>
        poolDictionaries: &#39;&#39;<br>
        category: &#39;Morphic-Windows&#39;!<br>
<br>
  !SystemWindow commentStamp: &#39;&lt;historical&gt;&#39; prior: 0!<br>
  SystemWindow is the Morphic equivalent of StandardSystemView -- a labelled container for rectangular views, with iconic facilities for close, collapse/expand, and resizing.<br>
<br>
  The attribute onlyActiveOnTop, if set to true (and any call to activate will set this), determines that only the top member of a collection of such windows on the screen shall be active.  To be not active means that a mouse click in any region will only result in bringing the window to the top and then making it active.!<br>
<br>
Item was added:<br>
+ ----- Method: SystemWindow class&gt;&gt;backgroundColor (in category &#39;preferences&#39;) -----<br>
+ backgroundColor<br>
+<br>
+       &lt;preference: &#39;backgroundColor&#39;<br>
+               category: &#39;windows&#39;<br>
+               description: &#39;set the backgound color of window&#39;<br>
+               type: #Color&gt;<br>
+       ^ BackgroundColor ifNil: [Color white]<br>
+ !<br>
<br>
Item was added:<br>
+ ----- Method: SystemWindow class&gt;&gt;backgroundColor: (in category &#39;preferences&#39;) -----<br>
+ backgroundColor: aColor<br>
+<br>
+       BackgroundColor := aColor<br>
+ !<br>
<br>
<br>
</blockquote></div><br></div>