summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1998-02-11 18:54:23 (GMT)
committerBarry Warsaw <barry@python.org>1998-02-11 18:54:23 (GMT)
commit37400e8943e0ee6c04c0c3ae6bd678ec35bb46aa (patch)
tree8a5ce99ba9542b0cd93399035a3ddcb1724a2ef8
parenta6f591ac6b9b0393f2e7a3db7f3868888b5139b4 (diff)
downloadcpython-37400e8943e0ee6c04c0c3ae6bd678ec35bb46aa.zip
cpython-37400e8943e0ee6c04c0c3ae6bd678ec35bb46aa.tar.gz
cpython-37400e8943e0ee6c04c0c3ae6bd678ec35bb46aa.tar.bz2
Better dimensions
-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 2686d6b..f1429fd 100644
--- a/Tools/pynche/ChipViewer.py
+++ b/Tools/pynche/ChipViewer.py
@@ -18,8 +18,8 @@ from Tkinter import *
import Pmw
class ChipWidget(Pmw.MegaWidget):
- _WIDTH = 80
- _HEIGHT = 100
+ _WIDTH = 150
+ _HEIGHT = 80
def __init__(self, parent=None, **kw):
optionsdefs = (('chip_borderwidth', 2, None),