diff --git a/twander.py b/twander.py index b862fc7..0da8006 100755 --- a/twander.py +++ b/twander.py @@ -6,7 +6,7 @@ # Program Information PROGNAME = "twander" -RCSID = "$Id: twander.py,v 3.150 2005/01/07 11:09:54 tundra Exp $" +RCSID = "$Id: twander.py,v 3.151 2005/01/07 23:07:28 tundra Exp $" VERSION = RCSID.split()[2] # Copyright Information @@ -86,7 +86,7 @@ MOUSEDIR = '' # Pop-up Directory Menu MOUSEHIST = '' # Pop-up History Menu MOUSEWILD = '' # Pop-up Wildcard Menu -MOUSESC = '' # Pop-up Shortcut Menu +MOUSESC = '' # Pop-up Shortcut Menu KEYPRESS = '' # Any keypress (for commands) QUITPROG = '' # Quit the program READCONF = '' # Re-read the configuration file @@ -2243,15 +2243,15 @@ x, y = UI.DirList.winfo_pointerxy() # Position near mouse PopupMenu(UI.HistBtn.menu, x, y) # Display History Menu - elif event.state == (Button3Mask | AltMask | ControlMask): # Alt-Control-Button-3 - x, y = UI.DirList.winfo_pointerxy() # Position near mouse - PopupMenu(UI.WildBtn.menu, x, y) # Display Wildcard Menu - elif event.state == (Button3Mask | ShiftMask): # Shift-Button-3 x, y = UI.DirList.winfo_pointerxy() # Position near mouse PopupMenu(UI.DirBtn.menu, x, y) # Display Directory Menu - elif event.state == (Button3Mask | AltMask): # Alt-Button-3 + elif event.state == (Button3Mask | AltMask | ControlMask): # Alt-Control-Button-3 + x, y = UI.DirList.winfo_pointerxy() # Position near mouse + PopupMenu(UI.WildBtn.menu, x, y) # Display Wildcard Menu + + elif event.state == (Button3Mask | ControlMask): # Alt-Button-3 x, y = UI.DirList.winfo_pointerxy() # Position near mouse PopupMenu(UI.ShortBtn.menu, x, y) # Display Shortcut Menu