# HG changeset patch # User Claus Gittinger # Date 1484934766 -3600 # Node ID 5ab35a5ebc67bb6d54f8162f3718a0bce84c3af6 # Parent a1092755800088ef1411d151d4febf7c1884f918 #REFACTORING by cg class: DataSetLabel changed: #redrawX:w:h:inset:on: (send #clippingBounds: instead of #clippingRectangle:) diff -r a10927558000 -r 5ab35a5ebc67 DataSetLabel.st --- a/DataSetLabel.st Fri Jan 20 18:52:35 2017 +0100 +++ b/DataSetLabel.st Fri Jan 20 18:52:46 2017 +0100 @@ -373,7 +373,7 @@ "/ must clip ... prevClip := aLabelView clippingRectangleOrNil. mustUndoClip := true. - aLabelView clippingRectangle:(Rectangle + aLabelView clippingBounds:(Rectangle left:xLeft top:y0 width:width height:height). ]. @@ -383,7 +383,7 @@ y0 := y0 + (shownLabel heightOn:aLabelView) + goodLookingVerticalSpacing. mustUndoClip == true ifTrue:[ - aLabelView clippingRectangle:prevClip + aLabelView clippingBounds:prevClip ]. ].