Launcher.st
changeset 1242 78421182813d
parent 1234 8cbd3a1ab97d
child 1250 a0c335cfb6a9
--- a/Launcher.st	Fri Jul 18 17:32:50 1997 +0200
+++ b/Launcher.st	Mon Jul 21 20:40:38 1997 +0200
@@ -1531,10 +1531,10 @@
 
     visual == #PseudoColor ifTrue:[
         box addVerticalSpace.
-        component := box addCheckBox:(resources string:'use fix color palette (6x6x4)') on:useFixPalette.
+        component := box addCheckBox:(resources string:'use fix color palette %1' with:'(4x8x4)') on:useFixPalette.
 
         box addVerticalSpace.
-        component := box addCheckBox:(resources string:'use fix gray color palette (32)') on:useFixGrayPalette.
+        component := box addCheckBox:(resources string:'use fix gray color palette %1' with:'(32)') on:useFixGrayPalette.
     ].
 
     ditherSyms notNil ifTrue:[
@@ -1567,7 +1567,7 @@
                 Color colorAllocationFailSignal handle:[:ex |
                     self warn:(resources string:'Could not allocate colors.').
                 ] do:[
-                    Color getColorsRed:6 green:6 blue:4 on:screen
+                    Color getColorsRed:4 green:8 blue:4 on:screen
                 ]
             ] ifFalse:[
                 screen releaseFixColors
@@ -1601,7 +1601,7 @@
     box destroy
 
     "Modified: 9.9.1996 / 22:43:04 / stefan"
-    "Modified: 30.6.1997 / 20:26:30 / cg"
+    "Modified: 21.7.1997 / 19:26:49 / cg"
 !
 
 fontSettings
@@ -4764,5 +4764,5 @@
 !Launcher class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/Launcher.st,v 1.279 1997-07-03 12:25:48 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Launcher.st,v 1.280 1997-07-21 18:40:38 cg Exp $'
 ! !