From 6e7f6ea7569467fb591d2f145befb0093ee51f0f Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Mon, 26 Apr 1999 23:36:47 +0000 Subject: [PATCH] Put the 'File' menu on the menubar even when modal, so users can get to the 'load palette' entry. Just don't put the quit button on there. --- Tools/pynche/PyncheWidget.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Tools/pynche/PyncheWidget.py b/Tools/pynche/PyncheWidget.py index 810b7ab665..6e087e3b46 100644 --- a/Tools/pynche/PyncheWidget.py +++ b/Tools/pynche/PyncheWidget.py @@ -87,10 +87,9 @@ class PyncheWidget: # # Tie them all together # - if not modal: - menubar.add_cascade(label='File', - menu=filemenu, - underline=0) + menubar.add_cascade(label='File', + menu=filemenu, + underline=0) menubar.add_cascade(label='View', menu=viewmenu, underline=0) -- 2.49.0