diff --git a/window.go b/window.go index 8ff4591..a9dbd7a 100644 --- a/window.go +++ b/window.go @@ -315,6 +315,12 @@ func (w *Window) SetMaximized(v bool) { } } +// Size returns the window's size (the size of its underlying body frame, +// including its title bar and content frames). +func (w *Window) Size() render.Rect { + return w.body.Size() +} + // Close the window, hiding it from display and calling its CloseWindow handler. func (w *Window) Close() { w.Hide()