Skip to content

Commit

Permalink
Fix range selecting elements in outliner not working
Browse files Browse the repository at this point in the history
  • Loading branch information
JannisX11 committed Jan 11, 2025
1 parent 47c662f commit e4457ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/outliner/outliner.js
Original file line number Diff line number Diff line change
Expand Up @@ -499,9 +499,9 @@ class OutlinerElement extends OutlinerNode {
TickUpdates.selection = true;
return this;
}
clickSelect(event) {
clickSelect(event, outliner_click) {
Undo.initSelection();
let result = this.select(event);
let result = this.select(event, outliner_click);
if (result === false) {
Undo.cancelSelection();
return;
Expand Down

0 comments on commit e4457ba

Please sign in to comment.