[TD] add missing repaint on property change

This commit is contained in:
donovaly
2020-03-25 22:47:08 +01:00
committed by WandererFan
parent 82e6d44f43
commit 95efaf96e4

View File

@@ -69,6 +69,12 @@ DrawViewClip::~DrawViewClip()
void DrawViewClip::onChanged(const App::Property* prop)
{
if ((prop == &Height) ||
(prop == &Width) ||
(prop == &ShowFrame) ||
(prop == &Views)) {
requestPaint();
}
DrawView::onChanged(prop);
}