diff options
| author | Pietro Gagliardi <[email protected]> | 2014-06-09 22:26:37 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-06-09 22:26:37 -0400 |
| commit | caeff5bb88718b7bf7ec8325496ee2f2d87bd5eb (patch) | |
| tree | 09d994d1dc2d6ed6d8fe56a97ceb3e83baa666f6 /area_windows.go | |
| parent | f8d46b6bdb3ae58908bdda0515041e34a7f36b24 (diff) | |
Implemented RepaintAll() on Windows.
Diffstat (limited to 'area_windows.go')
| -rw-r--r-- | area_windows.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/area_windows.go b/area_windows.go index 235a5a3..5afd259 100644 --- a/area_windows.go +++ b/area_windows.go @@ -698,6 +698,9 @@ func areaWndProc(hwnd _HWND, uMsg uint32, wParam _WPARAM, lParam _LPARAM) _LRESU adjustAreaScrollbars(s) repaintArea(s) // this calls for an update return 0 + case msgRepaintAll: + repaintArea(s) + return 0 default: return defWindowProc(hwnd, uMsg, wParam, lParam) } |
