1
0
mirror of https://github.com/chylex/IntelliJ-Keyboard-Master.git synced 2025-04-22 08:15:43 +02:00

Fix ClassCastException in some wrapped Enter action handlers

This commit is contained in:
chylex 2024-05-06 23:11:08 +02:00
parent 83bb3f6a83
commit 23becff81e
Signed by: chylex
GPG Key ID: 4DE42C8F19A80548

View File

@ -35,7 +35,7 @@ internal open class VimNavigationDispatcher<T : JComponent>(final override val c
}
container.getActionForKeyStroke(ENTER_KEY)?.let {
originalEnterAction = WrappedAction.ForActionListener(component, it)
originalEnterAction = WrappedAction.ForActionListener(container, it)
}
for (action in ActionUtil.getActions(container)) {