Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.890.mcz==================== Summary ====================
Name: Morphic-mt.890
Author: mt
Time: 17 April 2015, 12:09:40.721 am
UUID: bb97442e-b7a5-694c-9e58-449f1bc8d1ff
Ancestors: Morphic-mt.889
Made it explicit in the model that the search bar does not indicate unaccepted changes.
=============== Diff against Morphic-mt.889 ===============
Item was changed:
----- Method: SearchBar>>buildWith: (in category 'toolbuilder') -----
buildWith: builder
^ (builder build: (builder pluggableInputFieldSpec new
model: self;
getText: #searchTerm;
setText: #smartSearch:in:;
editText: #searchTermSilently:;
menu: #menu:shifted:;
selection: #selection;
+ indicateUnacceptedChanges: false;
help: 'Search or evaluate...' translated))
name: #searchBar;
wantsFrameAdornments: false;
borderWidth: 0;
yourself!