implement detail view highlight in base view

This commit is contained in:
WandererFan
2017-04-06 15:48:24 -04:00
committed by wmayer
parent eb34dc5103
commit f60464e545
9 changed files with 299 additions and 0 deletions

View File

@@ -134,6 +134,12 @@ void DrawViewDetail::onChanged(const App::Property* prop)
std::string(Reference.getValue());
Label.setValue(lblText);
}
if ((prop == &Reference) ||
(prop == &Radius) ||
(prop == &AnchorPoint)) {
BaseView.getValue()->touch(); //hack. sb "update graphics"
}
}
DrawView::onChanged(prop);
}