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