From 5ee646eba3d05dbb549b82a687352eeca9d13e4b Mon Sep 17 00:00:00 2001 From: Max Medvedev Date: Wed, 11 Feb 2026 13:35:38 +0100 Subject: [PATCH] IJPL-207762 deduplicate code GitOrigin-RevId: 0a9cbcda637af9ed6de3c9ea6c261a7f0b3ec134 --- .../com/intellij/codeInsight/editorActions/TypedHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/lang-impl/src/com/intellij/codeInsight/editorActions/TypedHandler.java b/platform/lang-impl/src/com/intellij/codeInsight/editorActions/TypedHandler.java index 24e47c06b7ce..cbddd43253b5 100644 --- a/platform/lang-impl/src/com/intellij/codeInsight/editorActions/TypedHandler.java +++ b/platform/lang-impl/src/com/intellij/codeInsight/editorActions/TypedHandler.java @@ -261,7 +261,7 @@ public final class TypedHandler extends TypedActionHandlerBase { } } finally { - editor.putUserData(CompletionPhase.AUTO_POPUP_TYPED_EVENT, null); + setTypedEvent(editor, charTyped, null); } }); }