Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.1253.mcz==================== Summary ====================
Name: Morphic-mt.1253
Author: mt
Time: 10 August 2016, 3:18:20.989966 pm
UUID: 75ab9643-e086-f740-8e03-8bb41ae2bc3a
Ancestors: Morphic-mt.1252
Fixes an update glitch with some scrollbar settings.
=============== Diff against Morphic-mt.1252 ===============
Item was changed:
----- Method: ScrollPane>>scrollBarOnLeft: (in category 'accessing') -----
scrollBarOnLeft: aBoolean
scrollBarOnLeft := aBoolean.
+
+ self
+ resizeScrollBars;
+ resizeScroller;
+ setScrollDeltas.!
- self extent: self extent!
Item was changed:
----- Method: ScrollPane>>scrollBarThickness: (in category 'accessing') -----
scrollBarThickness: anInteger
scrollBarThickness := anInteger.
+
+ self updateMinimumExtent.
+
+ self
+ resizeScrollBars;
+ resizeScroller;
+ setScrollDeltas.!
- self updateMinimumExtent.!