1
1
Fork 0
mirror of https://github.com/FellippeHeitor/InForm.git synced 2025-01-15 11:59:34 +00:00

Clipboard actions to trigger TextChanged event.

This commit is contained in:
FellippeHeitor 2016-12-19 22:27:05 -02:00
parent e548322aaf
commit 41ec821a75

View file

@ -2840,6 +2840,7 @@ SUB __UI_EventDispatcher
'__UI_SelectedText = ""
'__UI_SelectionLength = 0
END IF
__UI_TextChanged __UI_Focus
END IF
IF ContextMenuPaste THEN
ContextMenuPaste = False
@ -2871,6 +2872,7 @@ SUB __UI_EventDispatcher
__UI_SelectedText = ""
__UI_SelectionLength = 0
END IF
__UI_TextChanged __UI_Focus
END IF
IF ContextMenuPaste THEN
ContextMenuPaste = False
@ -2889,6 +2891,7 @@ SUB __UI_EventDispatcher
IF LEN(__UI_SelectedText) > 0 THEN
_CLIPBOARD$ = __UI_SelectedText
__UI_DeleteSelection
__UI_TextChanged __UI_Focus
END IF
__UI_KeyHit = 0
END IF