Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.1292.mcz==================== Summary ====================
Name: Morphic-mt.1292
Author: mt
Time: 20 August 2016, 8:32:07.37026 am
UUID: 89151bae-9541-c240-847e-6737df1934f5
Ancestors: Morphic-mt.1291
At the moment, the search bar border with will frequently be overwritten by UI themes. We will account for that in the future, not now.
=============== Diff against Morphic-mt.1291 ===============
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!