thomascube
2007-05-28 b2fb950fb58971a05d1c4d090132ab67afe6a6bd
program/js/list.js
@@ -41,6 +41,7 @@
  this.dont_select = false;
  this.drag_active = false;
  this.last_selected = 0;
  this.shift_start = 0;
  this.in_selection_before = false;
  this.focused = false;
  this.drag_mouse_start = null;
@@ -302,6 +303,9 @@
  if (!this.multiselect)
    mod_key = 0;
  if (!this.shift_start)
    this.shift_start = id
  if (!mod_key)
  {
    this.shift_start = id;
@@ -316,7 +320,6 @@
        break;
      case CONTROL_KEY:
        this.shift_start = id;
        if (!with_mouse)
          this.highlight_row(id, true); 
        break; 
@@ -338,6 +341,9 @@
  if (this.last_selected != 0 && this.rows[this.last_selected])
    this.set_classname(this.rows[this.last_selected].obj, 'focused', false);
  if (!this.selection.length)
    this.shift_start = null;
  this.last_selected = id;
  this.set_classname(this.rows[id].obj, 'focused', true);        
},