bfg-common 1.5.948 → 1.5.950
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -259,8 +259,11 @@ const onKeyPress = (key: UI_I_KeyboardRowItem): void => {
|
|
|
259
259
|
if (isCodeEvent) {
|
|
260
260
|
checkAndSendModifiers()
|
|
261
261
|
keyEvent('keydown', isCodeEvent, key)
|
|
262
|
-
|
|
263
|
-
|
|
262
|
+
if (!isCtrlPressed.value) {
|
|
263
|
+
// TODO DS-1074 Найти решение получе
|
|
264
|
+
keyEvent('keypress', isCodeEvent, key)
|
|
265
|
+
keyEvent('keyup', isCodeEvent, key)
|
|
266
|
+
}
|
|
264
267
|
|
|
265
268
|
checkAndOffModifiers()
|
|
266
269
|
window.app.inputProcess.clientGui.inputManager.input.val('_')
|