diff options
| author | Pietro Gagliardi <[email protected]> | 2014-08-14 08:00:05 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-08-14 08:00:05 -0400 |
| commit | 697b3cc1b0694db8b788175f6b377f5bcb15d5a2 (patch) | |
| tree | 3a36d5d003ae9d6feaa11feb869d2dacc6603234 | |
| parent | 9aacd55d58e3df91ca6490fbc70e4343cf1948d4 (diff) | |
Updated debug spew.
| -rw-r--r-- | redo/container_unix.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/redo/container_unix.go b/redo/container_unix.go index 513f9d1..74d5da9 100644 --- a/redo/container_unix.go +++ b/redo/container_unix.go @@ -46,7 +46,7 @@ func (c *container) setParent(p *controlParent) { func containerResizing(data unsafe.Pointer, r *C.GtkAllocation) { c := (*container)(data) c.resize(int(r.x), int(r.y), int(r.width), int(r.height)) -fmt.Printf("new size %d x %d\n", r.width, r.height) +fmt.Printf("%p new size %d x %d\n", c, r.width, r.height) } const ( |
