Never show the preset list when hover-selecting

This commit is contained in:
Quincy Morgan
2020-05-21 13:25:59 -04:00
parent ca80926db7
commit dcc66f7d8e
+3
View File
@@ -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;