diff --git a/twander.py b/twander.py index 165f826..597ffca 100755 --- a/twander.py +++ b/twander.py @@ -6,7 +6,7 @@ # Program Information PROGNAME = "twander" -RCSID = "$Id: twander.py,v 3.202 2006/12/15 04:24:02 tundra Exp $" +RCSID = "$Id: twander.py,v 3.203 2006/12/15 08:11:24 tundra Exp $" VERSION = RCSID.split()[2] # Copyright Information @@ -86,7 +86,7 @@ MOUSECTX = '' # Pop-up Command Menu MOUSEDIR = '' # Pop-up Directory Menu MOUSEHIST = '' # Pop-up History Menu -MOUSESC = '' # Pop-up Shortcut Menu +MOUSESC = '' # Pop-up Shortcut Menu MOUSESORT = '' # Pop-up Sort Menu KEYPRESS = '' # Any keypress (for commands) QUITPROG = '' # Quit the program @@ -2649,7 +2649,7 @@ x, y = UI.DirList.winfo_pointerxy() # Position near mouse PopupMenu(UI.DirBtn.menu, x, y) # Display Directory Menu - elif event.state == (Button3Mask | ControlMask): # Control-Button-3 + elif event.state == (Button1Mask | AltMask | ControlMask): # Control-Button-1 x, y = UI.DirList.winfo_pointerxy() # Position near mouse PopupMenu(UI.ShortBtn.menu, x, y) # Display Shortcut Menu