ImageView.st
changeset 5595 7a58ff8c13f1
parent 5556 10161d3f6046
child 5596 0ec4341756f5
--- a/ImageView.st	Tue Sep 05 16:45:34 2017 +0200
+++ b/ImageView.st	Tue Sep 05 16:45:40 2017 +0200
@@ -688,13 +688,13 @@
             right := x + w - 1.
             right > (xI + imgWidth) ifTrue:[
                 self clearRectangleX:(xI + imgWidth) y:y
-                               width:(right - imgWidth - xI) height:h
+                     width:(right - imgWidth - xI) height:h
             ].
             "/ below of image ?
             bott := y + h - 1.
             bott > (yI + imgHeight) ifTrue:[
                 self clearRectangleX:margin y:(yI + imgHeight)
-                               width:w height:(bott - imgHeight - yI)
+                     width:w height:(bott - imgHeight - yI)
             ].
         ].
     ] ifFalse:[
@@ -703,6 +703,7 @@
 
     "Created: / 11-07-1996 / 21:02:12 / cg"
     "Modified: / 11-04-2017 / 21:05:13 / cg"
+    "Modified (format): / 05-09-2017 / 10:53:40 / cg"
 ! !
 
 !ImageView methodsFor:'event handling'!