Fix wrong flag set in NWidgetBase::SetDirty

This commit is contained in:
Jonathan G Rennison
2020-10-01 23:01:09 +01:00
parent 35565a115b
commit 8071976b0e

View File

@@ -773,7 +773,7 @@ NWidgetBase::NWidgetBase(WidgetType tp) : ZeroedMemoryAllocator()
void NWidgetBase::SetDirty(Window *w)
{
this->base_flags |= WBF_DIRTY;
w->flags |= WF_DIRTY;
w->flags |= WF_WIDGETS_DIRTY;
}
/**