From bea4df1abf6f4df34016727a300e4826fc31cc05 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Mon, 28 Jul 2014 14:00:01 -0400 Subject: Began final simplification of size code. spaced is now a global variable; either all controls are given spacing now, or none will. beginResize() is a method on container again. Done on GTK+ and Mac OS X for now. I'm going to go ahead and implement this on Windows in a bit, regardless of whether that Stack Overflow question get answered or not, because ugggggggggh I just want to continue working on this project for fuck's sake! --- redo/sizing_unix.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'redo/sizing_unix.go') diff --git a/redo/sizing_unix.go b/redo/sizing_unix.go index 9f95e77..d94bc01 100644 --- a/redo/sizing_unix.go +++ b/redo/sizing_unix.go @@ -24,9 +24,9 @@ const ( gtkYPadding = 6 ) -func (w *window) beginResize() (d *sizing) { +func (c *container) beginResize() (d *sizing) { d = new(sizing) - if w.spaced { + if spaced { d.xmargin = gtkXMargin d.ymargin = gtkYMargin d.xpadding = gtkXPadding -- cgit v1.2.3