summaryrefslogtreecommitdiffstats
path: root/Demo/tkinter
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-06-20 11:36:09 (GMT)
committerGuido van Rossum <guido@python.org>1994-06-20 11:36:09 (GMT)
commite7571856f3f59c73527ceefcf01e8a6b6f42502b (patch)
tree7be7bd1bbab8f6f82c32fba3ddd7056f4c98dab0 /Demo/tkinter
parent1e9e400ba72993dacbaa12e7d2ed48109a1365dc (diff)
downloadcpython-e7571856f3f59c73527ceefcf01e8a6b6f42502b.zip
cpython-e7571856f3f59c73527ceefcf01e8a6b6f42502b.tar.gz
cpython-e7571856f3f59c73527ceefcf01e8a6b6f42502b.tar.bz2
Fix initial fill color of square
.,
Diffstat (limited to 'Demo/tkinter')
-rwxr-xr-xDemo/tkinter/guido/tst.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/tkinter/guido/tst.py b/Demo/tkinter/guido/tst.py
index ea573d2..818d90b 100755
--- a/Demo/tkinter/guido/tst.py
+++ b/Demo/tkinter/guido/tst.py
@@ -26,7 +26,7 @@ class Stuff(Canvas):
{'width': 100, 'height': 100})
Canvas.config(self, cnf)
self.create_rectangle(30, 30, 70, 70,
- {'fill': 'red', 'tags': 'box'})
+ {'fill': 'blue', 'tags': 'box'})
Canvas.bind(self, 'box', '<Enter>', self.enter)
Canvas.bind(self, 'box', '<Leave>', self.leave)