diff --git a/twander.py b/twander.py index 2f75aed..d2eaa80 100755 --- a/twander.py +++ b/twander.py @@ -6,7 +6,7 @@ # Program Information PROGNAME = "twander" -RCSID = "$Id: twander.py,v 2.91 2003/02/04 18:53:18 tundra Exp $" +RCSID = "$Id: twander.py,v 2.92 2003/02/07 00:21:42 tundra Exp $" VERSION = RCSID.split()[2] # Copyright Information @@ -81,9 +81,9 @@ # General Program Commands CLRHIST = '' # Clear Command History -FONTDECR = '' # Decrease font size -FONTINCR = '' # Increase font size -MOUSECTX = '' # Pop-up Context Menu +FONTDECR = '' # Decrease Font Size +FONTINCR = '' # Increase Font Size +MOUSECTX = '' # Pop-up Command Menu MOUSEDIR = '' # Pop-up Directory Menu KEYPRESS = '' # Any keypress (for commands) QUITPROG = '' # Quit the program @@ -1357,7 +1357,7 @@ # Bind handler to invoke Increment Font Size self.DirList.bind(self.KeyBindings["FONTINCR"], FontIncr) - # Bind handler to invoke Context Menu + # Bind handler to invoke Command Menu self.DirList.bind(self.KeyBindings["MOUSECTX"], MouseClick) # Bind handler to invoke Directory Menu @@ -1672,7 +1672,7 @@ elif event.state == (Button3Mask | ShiftMask | ControlMask): # Shift-Control-Button-3 x, y = UI.DirList.winfo_pointerxy() # Position near mouse - PopupMenu(UI.HistBtn.menu, x, y) # Display Directory Menu + PopupMenu(UI.HistBtn.menu, x, y) # Display History Menu elif event.state == (Button3Mask | ShiftMask): # Shift-Button-3 x, y = UI.DirList.winfo_pointerxy() # Position near mouse