From 6e170ad1dbe842081a6d28f9cccf6c86d6fd0a4e Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Wed, 25 Jun 2014 23:22:47 -0400 Subject: [PATCH] Made a quick comment clarificaiton in stdwndclass_windows.go. --- stdwndclass_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdwndclass_windows.go b/stdwndclass_windows.go index 9d6fc35..3fa23c4 100644 --- a/stdwndclass_windows.go +++ b/stdwndclass_windows.go @@ -157,7 +157,7 @@ func stdWndProc(hwnd _HWND, uMsg uint32, wParam _WPARAM, lParam _LPARAM) _LRESUL if r1 == 0 { panic("GetClientRect failed: " + err.Error()) } - // top-left corner of a client rect is (0,0) so no need for left/top + // top-left corner of a client rect is always (0,0) so no need for left/top s.resizeWindow(int(r.right), int(r.bottom)) // TODO use the Defer movement functions here? // TODO redraw window and all children here?