From dcc66f7d8eedf0f628014ceac57195f54c4f8b7c Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Thu, 21 May 2020 13:25:59 -0400 Subject: [PATCH] Never show the preset list when hover-selecting --- modules/ui/inspector.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/ui/inspector.js b/modules/ui/inspector.js index 5715f2aaa..c23332067 100644 --- a/modules/ui/inspector.js +++ b/modules/ui/inspector.js @@ -52,6 +52,9 @@ export function uiInspector(context) { editorPane = wrap.selectAll('.entity-editor-pane'); function shouldDefaultToPresetList() { + // always show the inspector on hover + if (_state !== 'select') return false; + // can only change preset on single selection if (_entityIDs.length !== 1) return false;