diff options
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | program/js/list.js | 1 |
2 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,7 @@ CHANGELOG Roundcube Webmail =========================== +- Fix unintentional messages list jumps on click in Internet Explorer (#1489056) - Fix list of required configuration options (#1489055) - Fix DB error when creating a new contact and a group is selected (#1489051) - Fix handling of deprecated boolean value of reply_mode option (#1489052) diff --git a/program/js/list.js b/program/js/list.js index cf62a7c14..a5f1c3f5b 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -692,7 +692,6 @@ select_row: function(id, mod_key, with_mouse) this.shift_start = null; this.last_selected = id; - this.list.focus(); }, |