[FEM] point filter: use a LineEdit to output value

- that one copy the result to the clipboard
- also fix a typo
This commit is contained in:
Uwe
2022-06-14 01:21:17 +02:00
parent 6a0db7c42e
commit f1e3c30d6a
3 changed files with 38 additions and 5 deletions

View File

@@ -270,7 +270,7 @@ bool ViewProviderFemPostFunction::findScaleFactor(double& scale) const
if (bbox.hasVolume()) {
float dx, dy, dz;
bbox.getSize(dx, dy, dz);
// we want the manipulator to have 20 % if the max size of the object
// we want the manipulator to have 20 % of the max size of the object
scale = 0.2 * std::max(std::max(dx, dy), dz);
return true;
}