Keep row selected on dblclick

This commit is contained in:
C?dric Krier 2015-09-13 11:26:22 +02:00
parent 3288571464
commit c40b2a332e

View file

@ -757,6 +757,13 @@
} else if (document.selection) { // IE?
document.selection.empty();
}
if (this.tree.selection_mode != Sao.common.SELECTION_NONE) {
this.set_selection(true);
this.selection_changed();
if (!this.is_selected()) {
return;
}
}
this.tree.switch_(this.path);
},
select_row: function(event_) {