summaryrefslogtreecommitdiff
path: root/sysdata_unix.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-05-23 23:38:14 -0400
committerPietro Gagliardi <[email protected]>2014-05-23 23:38:14 -0400
commitf4afa2a9511dd6ab75c040f9e50f11a1918ccf25 (patch)
treeadc33e8e12fbd3a2646913a344b2b1b46ed989ea /sysdata_unix.go
parentdbeccfa922d4d11ec37e27c7ebe611957eaae7f5 (diff)
Attempted to add focus change support to the new GTK+ high-order click code like we do on Windows; it isn't working quite yet but I'll mark it as a TODO for now.
Diffstat (limited to 'sysdata_unix.go')
-rw-r--r--sysdata_unix.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/sysdata_unix.go b/sysdata_unix.go
index c6a2c19..2ba5059 100644
--- a/sysdata_unix.go
+++ b/sysdata_unix.go
@@ -104,6 +104,8 @@ var classTypes = [nctypes]*classData{
"button-press-event": area_button_press_event_callback,
"button-release-event": area_button_release_event_callback,
"motion-notify-event": area_motion_notify_event_callback,
+ "focus-in-event": area_focus_event_callback,
+ "focus-out-event": area_focus_event_callback,
"key-press-event": area_key_press_event_callback,
"key-release-event": area_key_release_event_callback,
},