Enabled toggeling the grid selection with CTRL+A

This commit is contained in:
Andreas Stöckel 2011-06-16 17:08:32 +00:00
parent 1706f0fb22
commit 41c4d4cee4

View File

@ -1214,7 +1214,7 @@ egwActionObject.prototype.handleKeyPress = function(_keyCode, _shift, _ctrl, _al
case EGW_KEY_A: case EGW_KEY_A:
if (_ctrl) if (_ctrl)
{ {
this.setAllSelected(true); this.toggleAllSelected();
return true; return true;
} }