From 41c4d4cee4b9ca8184fb3c25d439a2eabda0fd84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20St=C3=B6ckel?= Date: Thu, 16 Jun 2011 17:08:32 +0000 Subject: [PATCH] Enabled toggeling the grid selection with CTRL+A --- phpgwapi/js/egw_action/egw_action.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/js/egw_action/egw_action.js b/phpgwapi/js/egw_action/egw_action.js index 17d0b86e5c..a936df9a10 100644 --- a/phpgwapi/js/egw_action/egw_action.js +++ b/phpgwapi/js/egw_action/egw_action.js @@ -1214,7 +1214,7 @@ egwActionObject.prototype.handleKeyPress = function(_keyCode, _shift, _ctrl, _al case EGW_KEY_A: if (_ctrl) { - this.setAllSelected(true); + this.toggleAllSelected(); return true; }