aboutsummaryrefslogtreecommitdiffhomepage
path: root/core
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+667e-11@users.noreply.github.com>2019-11-18 10:49:25 -0500
committerGravatar mitchell <70453897+667e-11@users.noreply.github.com>2019-11-18 10:49:25 -0500
commit7ba33bd25ebd4660859aaf68f87d377e94aba69c (patch)
treefd265611e695b9267802a67fc873fa7b15a2914e /core
parent51d40f28fcffc683919f8ff6e376d4820eef2cbf (diff)
Fixed event arguments for `events.AUTO_C_SELECTION_CHANGE`.
Diffstat (limited to 'core')
-rw-r--r--core/events.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/events.lua b/core/events.lua
index d83c7803..b2c3063e 100644
--- a/core/events.lua
+++ b/core/events.lua
@@ -386,7 +386,7 @@ local scnotifications = {
[c.SCN_CALLTIPCLICK] = {'call_tip_click', 'position'},
[c.SCN_AUTOCSELECTION] = {'auto_c_selection', 'text', 'position'},
[c.SCN_AUTOCSELECTIONCHANGE] = {
- 'auto_c_selection_change', 'id', 'text', 'position'
+ 'auto_c_selection_change', 'wParam', 'text', 'position'
},
[c.SCN_AUTOCCANCELLED] = {'auto_c_cancelled'},
[c.SCN_AUTOCCHARDELETED] = {'auto_c_char_deleted'},