Update of /cvsroot/audacity/audacity-src/src/commands
In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv21670/commands

Modified Files:
        Keyboard.cpp 
Log Message:
Major change to focus behavior.  It is no longer necessary for a track to have 
the focus, it is perfectly fine for no track to be focused.  Clicking on a 
track or pressing up-arrow or down-arrow will focus a track.  Pressing escape 
or clicking below all tracks will unfocus all tracks.  Also, no track will be 
shown as focused when the TrackPanel itself does not have keyboard focus.  This 
gives the user the correct feedback so that they know when they can and can't 
use TrackPanel keys.

Index: Keyboard.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/commands/Keyboard.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- Keyboard.cpp        18 Nov 2006 05:43:24 -0000      1.8
+++ Keyboard.cpp        4 Mar 2007 07:21:52 -0000       1.9
@@ -92,6 +92,9 @@
       case WXK_DOWN:
          newStr += wxT("Down");
          break;
+      case WXK_ESCAPE:
+         newStr += wxT("Escape");
+         break;
       case WXK_INSERT:
          newStr += wxT("Insert");
          break;


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Audacity-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/audacity-cvs

Reply via email to