cc_frm: add missing is_painted to paint()

Forms were never been tagged as painted.
This must be done for form items objects separately.
This commit is contained in:
2021-12-02 13:50:51 +01:00
parent d307f97952
commit 94ff7f95c7

View File

@@ -397,6 +397,7 @@ void CComponentsForm::paint(const bool &do_save_bg)
OnBeforeRePaint();
OnBeforePaint();
paintForm(do_save_bg);
is_painted = true;
}
bool CComponentsForm::isPageChanged()