From 0b9dcaa8f1db0f68a363b4e3d19dd51921b818a9 Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Thu, 7 Mar 2019 15:12:17 -0600 Subject: [PATCH] Remove option 'view information' from documents menu as there is not much to show from a document --- src/wxUI/menus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wxUI/menus.py b/src/wxUI/menus.py index c80fbf0..f185965 100644 --- a/src/wxUI/menus.py +++ b/src/wxUI/menus.py @@ -80,7 +80,7 @@ class peopleMenu(wx.Menu): class documentMenu(wx.Menu): def __init__(self, added=False, *args, **kwargs): super(documentMenu, self).__init__(*args, **kwargs) - self.view_info = self.Append(wx.NewId(), _("View information")) +# self.view_info = self.Append(wx.NewId(), _("View information")) self.download = self.Append(wx.NewId(), _("Download document")) if added == True: self.action = self.Append(wx.NewId(), _("Remove from my documents"))