*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Fri, 13 Feb 2004 12:47:18 +0100
changeset 2631 a7c5eb4bf49d
parent 2630 6dbb2681d47f
child 2632 48a2b5f7d091
*** empty log message ***
CharacterSetView.st
--- a/CharacterSetView.st	Fri Feb 13 12:44:04 2004 +0100
+++ b/CharacterSetView.st	Fri Feb 13 12:47:18 2004 +0100
@@ -217,20 +217,6 @@
     wCol := width / 16.
     hRow := height / 16.
 
-    0 to:16 do:[:col |
-        |x|
-
-        x := (col * wCol) rounded asInteger.
-        self displayLineFromX:x y:0 toX:x y:height-1.
-    ].
-
-    0 to:15 do:[:row |
-        |y|
-
-        y := (row * hRow) rounded asInteger.
-        self displayLineFromX:0 y:y toX:width y:y.
-    ].
-
     dY := (hRow - (font height)) // 2 + (font ascent).
 
     0 to:15 do:[:row |
@@ -270,6 +256,20 @@
         ].
     ].
 
+    0 to:16 do:[:col |
+        |x|
+
+        x := (col * wCol) rounded asInteger.
+        self displayLineFromX:x y:0 toX:x y:height-1.
+    ].
+
+    0 to:15 do:[:row |
+        |y|
+
+        y := (row * hRow) rounded asInteger.
+        self displayLineFromX:0 y:y toX:width y:y.
+    ].
+
     "
      (self extent:300@600) open
     "
@@ -335,5 +335,5 @@
 !CharacterSetView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/CharacterSetView.st,v 1.9 2004-02-13 11:44:04 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/CharacterSetView.st,v 1.10 2004-02-13 11:47:18 cg Exp $'
 ! !