diff options
| author | Pietro Gagliardi <[email protected]> | 2014-07-25 19:44:32 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-07-25 19:44:32 -0400 |
| commit | d1702d33e055fb254cfacb1ad7d3d3f60314bba6 (patch) | |
| tree | 34aaaa02191d3ba81907b11a885bbd57a7da74c2 /redo/sizing_unix.go | |
| parent | 010c97d686f8e10f940c98b62ffb5a6735f73490 (diff) | |
Updated the GTK+ backend to have the new parenting and sizing changes. Now to implement Tab! ...though I should probably implement the changes on Mac OS X first.
Diffstat (limited to 'redo/sizing_unix.go')
| -rw-r--r-- | redo/sizing_unix.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/redo/sizing_unix.go b/redo/sizing_unix.go index caa9c8c..5b19f9e 100644 --- a/redo/sizing_unix.go +++ b/redo/sizing_unix.go @@ -35,11 +35,12 @@ func (w *window) beginResize() (d *sizing) { return d } -func (w *window) endResize(d *sizing) { - C.gtk_widget_queue_draw(w.widget) +func (c *container) endResize(d *sizing) { + // TODO +// C.gtk_widget_queue_draw(w.widget) } -func (w *window) translateAllocationCoords(allocations []*allocation, winwidth, winheight int) { +func (c *container) translateAllocationCoords(allocations []*allocation, winwidth, winheight int) { // no need for coordinate conversion with gtk+ } |
