The Trunk: Morphic-mt.831.mcz

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

The Trunk: Morphic-mt.831.mcz

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

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

Name: Morphic-mt.831
Author: mt
Time: 7 April 2015, 11:43:46.915 am
UUID: 4bf38111-efd1-d34d-80e3-a438dcbd0d0d
Ancestors: Morphic-tfel.830

Fix scroll pane hack so that it does not reset h-offset when hiding the h-scrollbar. Not even the v-scrollbar does this...

=============== Diff against Morphic-tfel.830 ===============

Item was changed:
  ----- Method: ScrollPane>>hHideScrollBar (in category 'scrolling') -----
  hHideScrollBar
+
+ self hIsScrollbarShowing ifFalse: [^self].
- self hIsScrollbarShowing ifFalse: [^scroller offset: (self hMargin negated@scroller offset y)].
  self removeMorph: hScrollBar.
- scroller offset: (self hMargin negated@scroller offset y).
  retractableScrollBar ifFalse: [self resetExtent].
 
  !