diff --git a/js/outliner/group.js b/js/outliner/group.js index 1505e8965..10b09d6b4 100644 --- a/js/outliner/group.js +++ b/js/outliner/group.js @@ -64,11 +64,10 @@ class Group extends OutlinerNode { Canvas.updateAllBones([this]); return this; } - select(event, isOutlinerClick) { + select(event, is_outliner_click) { var scope = this; if (Blockbench.hasFlag('renaming') || this.locked) return this; if (!event) event = true - if (isOutlinerClick && event.pointerType == 'touch') return; var allSelected = Group.selected === this && selected.length && this.matchesSelection() //Clear Old Group diff --git a/js/outliner/outliner.js b/js/outliner/outliner.js index 1ae946e1c..4c3c5d67d 100644 --- a/js/outliner/outliner.js +++ b/js/outliner/outliner.js @@ -433,7 +433,6 @@ class OutlinerElement extends OutlinerNode { Blockbench.showQuickMessage('message.group_required_to_animate'); return false; } - if (event instanceof PointerEvent && event.pointerType == 'touch') return; //Shift var just_selected = [] if (event && (event.shiftKey === true || Pressing.overrides.shift) && this.getParentArray().includes(selected[selected.length-1]) && !Modes.paint && is_outliner_click) { @@ -1398,7 +1397,7 @@ Interface.definePanels(function() { v-bind:style="{'padding-left': indentation + 'px'}" @contextmenu.prevent.stop="node.showContextMenu($event)" @click="node.select($event, true)" - @touchstart="node.select($event, true)" :title="node.title" + :title="node.title" @dblclick.stop.self="!node.locked && renameOutliner()" >` + //Opener