You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jm...@apache.org on 2013/05/10 02:42:17 UTC

git commit: [flex-sdk] [refs/heads/develop] - FLEX-14773 jumping to a list item on key press should use charCode not keyCode

Updated Branches:
  refs/heads/develop cddd3f48f -> 670532045


FLEX-14773 jumping to a list item on key press should use charCode not keyCode


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/67053204
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/67053204
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/67053204

Branch: refs/heads/develop
Commit: 670532045e3951cad6fce73999cfe7da67bb2cdc
Parents: cddd3f4
Author: Justin Mclean <jm...@apache.org>
Authored: Fri May 10 10:41:51 2013 +1000
Committer: Justin Mclean <jm...@apache.org>
Committed: Fri May 10 10:41:51 2013 +1000

----------------------------------------------------------------------
 .../mx/controls/listClasses/AdvancedListBase.as    |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/67053204/frameworks/projects/advancedgrids/src/mx/controls/listClasses/AdvancedListBase.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/advancedgrids/src/mx/controls/listClasses/AdvancedListBase.as b/frameworks/projects/advancedgrids/src/mx/controls/listClasses/AdvancedListBase.as
index 9c7ee1c..317cee3 100644
--- a/frameworks/projects/advancedgrids/src/mx/controls/listClasses/AdvancedListBase.as
+++ b/frameworks/projects/advancedgrids/src/mx/controls/listClasses/AdvancedListBase.as
@@ -8646,7 +8646,7 @@ public class AdvancedListBase extends ScrollControlBase
 
             default:
             {
-                if (findKey(event.keyCode))
+                if (findKey(event.charCode))
                     event.stopPropagation();
             }
         }