summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--redo/group_windows.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/redo/group_windows.go b/redo/group_windows.go
index 43f6fec..fda95e3 100644
--- a/redo/group_windows.go
+++ b/redo/group_windows.go
@@ -15,7 +15,7 @@ type group struct {
func newGroup(text string, control Control) Group {
hwnd := C.newControl(buttonclass,
C.BS_GROUPBOX,
- 0)
+ C.WS_EX_CONTROLPARENT)
g := &group{
_hwnd: hwnd,
container: newContainer(control),