diff --git a/twander.py b/twander.py index d9ff616..0ce50f0 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.15 2002/12/15 22:29:56 tundra Exp $" +RCSID = "$Id: twander.py,v 2.16 2002/12/15 22:37:49 tundra Exp $" VERSION = RCSID.split()[2] @@ -73,13 +73,13 @@ # Selection Keys SELALL = '' # Select all items -SELNEXT = '' # Select next item SELNONE = '' # Unselect all items +SELNEXT = '' # Select next item SELPREV = '' # Select previous item SELEND = '' # Select bottom item SELTOP = '' # Select top item -# Intra-Display Movement +# Scrolling Commands PGDN = '' # Move page down PGUP = '' # Move page up @@ -383,8 +383,8 @@ "MOUSEBACK":MOUSEBACK, "MOUSEUP":MOUSEUP, "SELALL":SELALL, - "SELNEXT":SELNEXT, "SELNONE":SELNONE, + "SELNEXT":SELNEXT, "SELPREV":SELPREV, "SELEND":SELEND, "SELTOP":SELTOP, @@ -768,12 +768,12 @@ # Bind handler for "Select All" self.DirList.bind(self.KeyBindings["SELALL"], KeySelAll) - # Bind handler for "Next Item" - self.DirList.bind(self.KeyBindings["SELNEXT"], KeySelNext) - # Bind handler for "Select No Items" self.DirList.bind(self.KeyBindings["SELNONE"], KeySelNone) + # Bind handler for "Next Item" + self.DirList.bind(self.KeyBindings["SELNEXT"], KeySelNext) + # Bind handler for "Previous Item" self.DirList.bind(self.KeyBindings["SELPREV"], KeySelPrev)