summaryrefslogtreecommitdiffstats
path: root/Tools/pynche/ChipViewer.py
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1998-10-01 03:07:20 (GMT)
committerBarry Warsaw <barry@python.org>1998-10-01 03:07:20 (GMT)
commitaa40b556fd12b358a634389a25dc0bef60744893 (patch)
treefc1aeededdaa32065a3458f2dab883ddfc618a12 /Tools/pynche/ChipViewer.py
parent03e8a31eb3b4bbd3e349ce04629acf78ab0b70f8 (diff)
downloadcpython-aa40b556fd12b358a634389a25dc0bef60744893.zip
cpython-aa40b556fd12b358a634389a25dc0bef60744893.tar.gz
cpython-aa40b556fd12b358a634389a25dc0bef60744893.tar.bz2
Groove for debugging
Diffstat (limited to 'Tools/pynche/ChipViewer.py')
-rw-r--r--Tools/pynche/ChipViewer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/pynche/ChipViewer.py b/Tools/pynche/ChipViewer.py
index 190cf09..0f89408 100644
--- a/Tools/pynche/ChipViewer.py
+++ b/Tools/pynche/ChipViewer.py
@@ -52,8 +52,8 @@ class ChipWidget:
class ChipViewer:
def __init__(self, switchboard, parent=None):
self.__sb = switchboard
- self.__frame = Frame(parent)
- self.__frame.pack(expand=YES, fill=BOTH)
+ self.__frame = Frame(parent, relief=GROOVE, borderwidth=2)
+ self.__frame.pack()
# create the chip that will display the currently selected color
# exactly
self.__sframe = Frame(self.__frame)