summaryrefslogtreecommitdiff
path: root/redo/tab_windows.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-12 17:04:04 -0400
committerPietro Gagliardi <[email protected]>2014-08-12 17:04:04 -0400
commit2146ac2af3209f70df8c73e16d82bf866ea19c0b (patch)
treeb1fbcbc0f011dd3e6c2f48f6507b3bf113c6fd8d /redo/tab_windows.go
parentd060977cc7644be37774192f0015ce1e6a91b2aa (diff)
Added WS_EX_CONTROLPARENT to container and Tab on Windows.
Diffstat (limited to 'redo/tab_windows.go')
-rw-r--r--redo/tab_windows.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/redo/tab_windows.go b/redo/tab_windows.go
index 5902b3b..62da0b4 100644
--- a/redo/tab_windows.go
+++ b/redo/tab_windows.go
@@ -23,7 +23,7 @@ type tab struct {
func newTab() Tab {
hwnd := C.newControl(C.xWC_TABCONTROL,
C.TCS_TOOLTIPS | C.WS_TABSTOP,
- 0)
+ C.WS_EX_CONTROLPARENT)
t := &tab{
_hwnd: hwnd,
}