fixed dimension of new-image dialog.
authorClaus Gittinger <cg@exept.de>
Fri, 31 Jul 1998 01:58:25 +0200
changeset 932 7111238cda23
parent 931 059ac9cea31f
child 933 f090206aadff
fixed dimension of new-image dialog.
ImageEditor.st
--- a/ImageEditor.st	Fri Jul 31 01:42:03 1998 +0200
+++ b/ImageEditor.st	Fri Jul 31 01:58:25 1998 +0200
@@ -160,7 +160,9 @@
 listOfDefaultSizes
     "returns the list of default sizes for a new image"
 
-    ^#('22x22' '16x16' '32x32')
+    ^#('8x8' '16x16' '22x22' '32x32' '48x48' '64x64')
+
+    "Modified: / 31.7.1998 / 01:57:34 / cg"
 ! !
 
 !ImageEditor class methodsFor:'help specs'!
@@ -363,11 +365,11 @@
           #window: 
            #(#WindowSpec
               #name: 'New Image'
-              #layout: #(#LayoutFrame 240 0 278 0 540 0 382 0)
+              #layout: #(#LayoutFrame 102 0 64 0 402 0 182 0)
               #label: 'New Image'
               #min: #(#Point 10 10)
               #max: #(#Point 1152 900)
-              #bounds: #(#Rectangle 240 278 541 383)
+              #bounds: #(#Rectangle 102 64 403 183)
               #usePreferredExtent: false
           )
           #component: 
@@ -383,14 +385,14 @@
                          #(
                            #(#FramedBoxSpec
                               #name: 'framedBox1'
-                              #layout: #(#LayoutFrame 1 0.0 7 0.0 0 0.4 66 0)
+                              #layout: #(#LayoutFrame 1 0.0 7 0.0 0 0.4 76 0)
                               #component: 
                                #(#SpecCollection
                                   #collection: 
                                    #(
                                      #(#ComboBoxSpec
                                         #name: 'defaultSizesComboBox'
-                                        #layout: #(#LayoutFrame 15 0.0 20 0.0 17 1.0 16 1.0)
+                                        #layout: #(#LayoutFrame 11 0.0 25 0.0 108 0.0 48 0.0)
                                         #model: #selectionOfSize
                                         #type: #string
                                         #comboList: #listOfDefaultSizes
@@ -403,14 +405,14 @@
                           )
                            #(#FramedBoxSpec
                               #name: 'framedBox2'
-                              #layout: #(#LayoutFrame 0 0.4 7 0.0 -1 1.0 66 0)
+                              #layout: #(#LayoutFrame 0 0.4 7 0.0 -1 1.0 76 0)
                               #component: 
                                #(#SpecCollection
                                   #collection: 
                                    #(
                                      #(#ComboListSpec
                                         #name: 'colorMapComboBox'
-                                        #layout: #(#LayoutFrame 15 0.0 20 0.0 18 1.0 16 1.0)
+                                        #layout: #(#LayoutFrame 15 0.0 24 0.0 163 0.0 47 0.0)
                                         #model: #selectionOfColorMap
                                         #comboList: #listOfColorMaps
                                         #useIndex: false
@@ -434,6 +436,8 @@
               )
           )
       )
+
+    "Modified: / 31.7.1998 / 01:56:31 / cg"
 !
 
 windowSpec