]> granicus.if.org Git - python/commitdiff
From: "Fredrik Lundh" <fredrik@pythonware.com>
authorGuido van Rossum <guido@python.org>
Fri, 7 Aug 1998 14:55:21 +0000 (14:55 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 7 Aug 1998 14:55:21 +0000 (14:55 +0000)
Date: Fri, 7 Aug 1998 13:37:12 +0100

the "initialcolor" code is broken in several places in the
current version of tkColorChooser.  I've attached an up-
dated version for 1.5.2.

Lib/lib-tk/tkColorChooser.py

index a3db41ef98ad239738eb0e2fff3122df74f0d202..36df25bb400e013c9ffb99545ae5f47d4a47fcf8 100644 (file)
@@ -9,6 +9,8 @@
 #
 # written by Fredrik Lundh, May 1997
 #
+# fixed initialcolor handling in August 1998
+#
 
 #
 # options (all have default values):
 # - title: dialog title
 #
 
-# FIXME: as of Tk 8.0a2, the Unix colour picker is really ugly, and
-# doesn't seem to work properly on true colour displays.  maybe we
-# should use the instant python version instead?
-
 from tkCommonDialog import Dialog
 
 
@@ -42,7 +40,7 @@ class Chooser(Dialog):
             color = self.options["initialcolor"]
             if type(color) == type(()):
                 # assume an RGB triplet
-                self.options["initialcolor"] = "%02x%02x%02x" % color
+                self.options["initialcolor"] = "#%02x%02x%02x" % color
         except KeyError:
             pass
 
@@ -61,6 +59,10 @@ class Chooser(Dialog):
 def askcolor(color = None, **options):
     "Ask for a color"
 
+    if color:
+       options = options.copy()
+       options["initialcolor"] = color
+
     return apply(Chooser, (), options).show()