The Trunk: HelpSystem-Core-mt.85.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: HelpSystem-Core-mt.85.mcz

commits-2
Marcel Taeumel uploaded a new version of HelpSystem-Core to project The Trunk:
http://source.squeak.org/trunk/HelpSystem-Core-mt.85.mcz

==================== Summary ====================

Name: HelpSystem-Core-mt.85
Author: mt
Time: 23 January 2016, 12:10:31.113398 pm
UUID: b57d1c05-9c97-4f30-8ca1-ea36ec62e045
Ancestors: HelpSystem-Core-mt.84

Updates help browser to not consider edits in the search field. Fixes the bug with annoying dialog popups for every search request.

=============== Diff against HelpSystem-Core-mt.84 ===============

Item was changed:
  ----- Method: HelpBrowser>>buildSearchWith: (in category 'toolbuilder') -----
  buildSearchWith: builder
 
  ^ builder pluggableInputFieldSpec new
  model: self;
  getText: #searchTerm;
  setText: #searchTerm:;
  help: 'Search...';
+ askBeforeDiscardingEdits: false;
+ indicateUnacceptedChanges: false;
  frame: (LayoutFrame
  fractions: (0@0 corner: 1@0)
  offsets: (0@0 corner: 0@ (Preferences standardDefaultTextFont height * 2)));
  yourself!