From d8de9e785eb196cc0724f3f5d168b3958852d8c7 Mon Sep 17 00:00:00 2001 From: Max Grossman Date: Mon, 17 Dec 2018 14:56:33 -0500 Subject: [PATCH] do not add found presets to recent --- modules/ui/entity_editor.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/ui/entity_editor.js b/modules/ui/entity_editor.js index de0181383..68f41dea6 100644 --- a/modules/ui/entity_editor.js +++ b/modules/ui/entity_editor.js @@ -218,8 +218,6 @@ export function uiEntityEditor(context) { // A "weak" preset doesn't set any tags. (e.g. "Address") // Don't replace a weak preset with a fallback preset (e.g. "Point") if (!(weakPreset && match.isFallback())) { - match.visible(true); - context.presets().choose(match); entityEditor.preset(match); } entityEditor.modified(_base !== graph);