Made a quick comment clarificaiton in stdwndclass_windows.go.

This commit is contained in:
Pietro Gagliardi 2014-06-25 23:22:47 -04:00
parent 1eeadc000a
commit 6e170ad1db
1 changed files with 1 additions and 1 deletions

View File

@ -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?