summaryrefslogtreecommitdiff
path: root/redo/container_unix.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-24 21:23:19 -0400
committerPietro Gagliardi <[email protected]>2014-08-24 21:23:19 -0400
commitf9c5c41c77506142eef2461dd75b2178fc5b598a (patch)
treed4d0e86b35e166c85ee975510c95e317e0e9f149 /redo/container_unix.go
parent01db831c4c40959504d46e14e0845eb179759013 (diff)
Split ymargin into top and bottom margins to accomodate Groups on Windows; fixed those.
Diffstat (limited to 'redo/container_unix.go')
-rw-r--r--redo/container_unix.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/redo/container_unix.go b/redo/container_unix.go
index 4beccef..fbfd993 100644
--- a/redo/container_unix.go
+++ b/redo/container_unix.go
@@ -58,7 +58,8 @@ func (c *container) beginResize() (d *sizing) {
d = new(sizing)
if spaced {
d.xmargin = gtkXMargin
- d.ymargin = gtkYMargin
+ d.ymargintop = gtkYMargin
+ d.ymarginbottom = d.ymargintop
d.xpadding = gtkXPadding
d.ypadding = gtkYPadding
}