diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-03-28 20:13:39 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-03-28 20:15:26 +0100 |
commit | 60fd3c8b5f112457f595fe0ac250701413d2f7fa (patch) | |
tree | adf10bcb17f0b10502aeceecd46d0f1a5acf93a8 /program/js/list.js | |
parent | bb13a8805435874996922f930020d695037ef160 (diff) |
Fix keyboard events on list widgets in Internet Explorer (#1489025) - It was a regression in fix for #1489008
Diffstat (limited to 'program/js/list.js')
-rw-r--r-- | program/js/list.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/program/js/list.js b/program/js/list.js index 660b74d85..6b8bb39c7 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -687,6 +687,7 @@ select_row: function(id, mod_key, with_mouse) this.shift_start = null; this.last_selected = id; + this.list.focus(); }, |