#1489392 - arrow key with control down should *not* select messages
In alignment with desktop applications (windows & mac) using the arrow keys with the control key pressed should not select the messages. Changes code so that with_mouse will be passed as true when click event occurs, and row will only be toggled if it was a click event.
| | |
| | | |
| | | var dblclicked = now - this.rows[id].clicked < this.dblclick_time; |
| | | |
| | | // unselects currently selected row |
| | | if (!this.drag_active && this.in_selection_before == id && !dblclicked) |
| | | this.select_row(id, mod_key, false); |
| | | |
| | | // selects/unselects currently selected row |
| | | if (!this.drag_active && !dblclicked) |
| | | this.select_row(id, mod_key, true); |
| | | |
| | | this.drag_start = false; |
| | | this.in_selection_before = false; |
| | | |
| | | // row was double clicked |
| | | if (this.rowcount && dblclicked && this.in_selection(id)) { |
| | |
| | | break; |
| | | |
| | | case CONTROL_KEY: |
| | | if (!with_mouse) |
| | | if (with_mouse) |
| | | this.highlight_row(id, true); |
| | | break; |
| | | |