summaryrefslogtreecommitdiff
path: root/sysdata_darwin.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-04-04 15:07:43 -0400
committerPietro Gagliardi <[email protected]>2014-04-04 15:51:40 -0400
commit1a7bf4cd8974bc116df17bccd908187a767d7e6e (patch)
treeec3a050d7324f387d4726eadd33ba7280e5cdc68 /sysdata_darwin.go
parentbe668a965a382fc1de2f9711282b5ec897d55ca5 (diff)
Got rid of objc_addDelegate(); it was only called in one place (Mac OS X Window creation). Also forgot to mention that the previous commit also disables mouse movements in Cocoa Areas for now; I need to replace the current code with one that uses tracking because mouse movements are system-global.
Diffstat (limited to 'sysdata_darwin.go')
-rw-r--r--sysdata_darwin.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdata_darwin.go b/sysdata_darwin.go
index 09b7730..05eabf1 100644
--- a/sysdata_darwin.go
+++ b/sysdata_darwin.go
@@ -46,6 +46,7 @@ var (
_initWithContentRect = sel_getUid("initWithContentRect:styleMask:backing:defer:")
_initWithFrame = sel_getUid("initWithFrame:")
+ _setDelegate = sel_getUid("setDelegate:")
_setAcceptsMouseMovedEvents = sel_getUid("setAcceptsMouseMovedEvents:")
_makeKeyAndOrderFront = sel_getUid("makeKeyAndOrderFront:")
_orderOut = sel_getUid("orderOut:")
@@ -116,7 +117,7 @@ var classTypes = [nctypes]*classData{
NSTitledWindowMask | NSClosableWindowMask | NSMiniaturizableWindowMask | NSResizableWindowMask,
2, // NSBackingStoreBuffered - the only backing store method that Apple says we should use (the others are legacy)
C.BOOL(C.YES)) // defer creation of device until we show the window
- objc_setDelegate(win, appDelegate)
+ C.objc_msgSend_id(win, _setDelegate, appDelegate)
// this is needed for Areas in the window to receive mouse move events
// C.objc_msgSend_bool(win, _setAcceptsMouseMovedEvents, C.BOOL(C.YES))
return win