diff options
author | Barry Warsaw <barry@python.org> | 1998-10-01 14:26:26 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1998-10-01 14:26:26 (GMT) |
commit | b26743ac485b183ba9ae8e727658ac83f8162eba (patch) | |
tree | 4ac61cbbdc6da05f128029d2ea5fd7c2ef928d09 /Tools/pynche/PyncheWidget.py | |
parent | 65f0b6be47d981db57e26dcd07f9dc1fd775d2ab (diff) | |
download | cpython-b26743ac485b183ba9ae8e727658ac83f8162eba.zip cpython-b26743ac485b183ba9ae8e727658ac83f8162eba.tar.gz cpython-b26743ac485b183ba9ae8e727658ac83f8162eba.tar.bz2 |
Make sure the menubar is stretched
Diffstat (limited to 'Tools/pynche/PyncheWidget.py')
-rw-r--r-- | Tools/pynche/PyncheWidget.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/pynche/PyncheWidget.py b/Tools/pynche/PyncheWidget.py index 82b4097..af422b7 100644 --- a/Tools/pynche/PyncheWidget.py +++ b/Tools/pynche/PyncheWidget.py @@ -22,7 +22,7 @@ class PyncheWidget: # create the menubar # menubar = self.__menubar = Frame(root, relief=RAISED, borderwidth=2) - menubar.pack(fill=X) + menubar.grid(row=0, column=0, columnspan=2, sticky='EW') # # File menu # |