summaryrefslogtreecommitdiff
path: root/sysdata_darwin.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-03-01 18:04:09 -0500
committerPietro Gagliardi <[email protected]>2014-03-01 18:04:09 -0500
commit10e9f6b927c5208fce290fea346a8a2ad7ac3fa3 (patch)
tree9566fbf5602b1e09470b183d609f4ebe9ff33de2 /sysdata_darwin.go
parentd9cf76c1ab46dad314a3cfafad31f7f57845b8b6 (diff)
Fixed non-minimizeable windows in Mac OS X; it was a simple copy-paste fail.
Diffstat (limited to 'sysdata_darwin.go')
-rw-r--r--sysdata_darwin.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdata_darwin.go b/sysdata_darwin.go
index 797fe70..37352a3 100644
--- a/sysdata_darwin.go
+++ b/sysdata_darwin.go
@@ -68,7 +68,7 @@ var classTypes = [nctypes]*classData{
win = objc_msgSend_rect_uint_uint_bool(win,
_initWithContentRect,
0, 0, 100, 100,
- NSTitledWindowMask | NSClosableWindowMask | NSClosableWindowMask | NSResizableWindowMask,
+ 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)