Aleksander Machniak
2013-10-30 03da10725c584e2b3273f8cf66a0b2a51aadd275
Bring back fix for #1489396, unintentionally removed in another pull request
1 files modified
16 ■■■■ changed files
program/js/list.js 16 ●●●● patch | view | raw | blame | history
program/js/list.js
@@ -858,14 +858,8 @@
{
  var row = this.get_first_row();
  if (row) {
    if (mod_key) {
      this.shift_select(row, mod_key);
      this.triggerEvent('select');
    this.select_row(row, mod_key, false);
      this.scrollto(row);
    }
    else {
      this.select(row);
    }
  }
},
@@ -877,14 +871,8 @@
{
  var row = this.get_last_row();
  if (row) {
    if (mod_key) {
      this.shift_select(row, mod_key);
      this.triggerEvent('select');
    this.select_row(row, mod_key, false);
      this.scrollto(row);
    }
    else {
      this.select(row);
    }
  }
},