diff options
Diffstat (limited to 'Mac/Lib/FrameWork.py')
-rw-r--r-- | Mac/Lib/FrameWork.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Mac/Lib/FrameWork.py b/Mac/Lib/FrameWork.py index 75381fc..dc762cf 100644 --- a/Mac/Lib/FrameWork.py +++ b/Mac/Lib/FrameWork.py @@ -674,12 +674,13 @@ class AppleMenu(Menu): Menu.__init__(self, bar, "\024") self.additem(abouttext, None, aboutcallback) self.addseparator() - self.menu.AppendResMenu('DRVR') + if MacOS.runtimemodel == 'ppc': + self.menu.AppendResMenu('DRVR') def dispatch(self, id, item, window, event): if item == 1: Menu.dispatch(self, id, item, window, event) - else: + elif MacOS.runtimemodel == 'ppc': name = self.menu.GetMenuItemText(item) OpenDeskAcc(name) |