diff --git a/twander.py b/twander.py index 3b36858..d9ff616 100755 --- a/twander.py +++ b/twander.py @@ -4,7 +4,7 @@ # For Updates See: http://www.tundraware.com/Software/twander PROGNAME = "twander" -RCSID = "$Id: twander.py,v 2.14 2002/12/15 21:47:43 tundra Exp $" +RCSID = "$Id: twander.py,v 2.15 2002/12/15 22:29:56 tundra Exp $" VERSION = RCSID.split()[2] @@ -67,8 +67,8 @@ DIRBACK = '' # Goto previous directory DIRSTART = '' # Goto starting directory DIRUP = '' # Go up one directory level -MSEBACK = '' # Go back one directory with mouse -MSEUP = '' # Go up one directory with mouse +MOUSEBACK = '' # Go back one directory with mouse +MOUSEUP = '' # Go up one directory with mouse # Selection Keys @@ -380,8 +380,8 @@ "DIRBACK":DIRBACK, "DIRSTART":DIRSTART, "DIRUP":DIRUP, - "MSEBACK":MSEBACK, - "MSEUP":MSEUP, + "MOUSEBACK":MOUSEBACK, + "MOUSEUP":MOUSEUP, "SELALL":SELALL, "SELNEXT":SELNEXT, "SELNONE":SELNONE, @@ -757,10 +757,10 @@ self.DirList.bind(self.KeyBindings["DIRUP"], KeyUpDir) # Bind handler for "Mouse Back Dir" - self.DirList.bind(self.KeyBindings["MSEBACK"], KeyBackDir) + self.DirList.bind(self.KeyBindings["MOUSEBACK"], KeyBackDir) # Bind handler for "Mouse Up Dir" - self.DirList.bind(self.KeyBindings["MSEUP"], KeyUpDir) + self.DirList.bind(self.KeyBindings["MOUSEUP"], KeyUpDir) # Selection Keys