fix: Windows Background color issue (#14561)

Call InvalidateRect for windows after setting the bg color
This commit is contained in:
Nitish Sakhawalkar 2018-09-12 13:41:47 -07:00 коммит произвёл Shelley Vohr
Родитель 7b71d7cbce
Коммит e90c281ef3
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -792,6 +792,7 @@ void NativeWindowViews::SetBackgroundColor(SkColor background_color) {
reinterpret_cast<LONG_PTR>(brush));
if (previous_brush)
DeleteObject((HBRUSH)previous_brush);
InvalidateRect(GetAcceleratedWidget(), NULL, 1);
#endif
}