The Trunk: ToolBuilder-Morphic-mt.119.mcz

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

The Trunk: ToolBuilder-Morphic-mt.119.mcz

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

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

Name: ToolBuilder-Morphic-mt.119
Author: mt
Time: 7 April 2015, 11:41:52.882 am
UUID: 9288dea7-6cfc-2d4e-b9fa-b9d0ad9d65f8
Ancestors: ToolBuilder-Morphic-mt.118

Made pluggable input fields into real one-liners that scroll horizontally w/o having a scroll bar.

=============== Diff against ToolBuilder-Morphic-mt.118 ===============

Item was changed:
  ----- Method: MorphicToolBuilder>>buildPluggableInputField: (in category 'pluggable widgets') -----
  buildPluggableInputField: aSpec
  | widget |
  widget := self buildPluggableText: aSpec.
  widget acceptOnCR: true.
  widget hideScrollBarsIndefinitely.
+ widget textMorph
+ autoFit: false;
+ wrapFlag: true;
+ width: 999999.
  ^widget!