From 6bc4425915920f0af935af02fe0eeebeae7e88b0 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Fri, 18 Jul 2014 14:07:12 -0400 Subject: [PATCH] Scrapped Window.SetSize() and Window.Center() (for now?). --- redo/scrapped | 2 ++ redo/window.go | 3 --- 2 files changed, 2 insertions(+), 3 deletions(-) create mode 100644 redo/scrapped diff --git a/redo/scrapped b/redo/scrapped new file mode 100644 index 0000000..fb9b993 --- /dev/null +++ b/redo/scrapped @@ -0,0 +1,2 @@ +Window.SetSize() +Window.Center() (only really effective on Mac OS X) diff --git a/redo/window.go b/redo/window.go index 315ac41..2dc6a6e 100644 --- a/redo/window.go +++ b/redo/window.go @@ -29,9 +29,6 @@ type Window interface { // If this handler returns true, the Window is closed as defined by Close above. // If this handler returns false, the Window is not closed. OnClosing(func(c Doer) bool) *Request - - // TODO SetSize (TODO remove?) - // TODO Center } // NewWindow returns a Request to create a new Window with the given title text and size.