[TD] fix order of arrow heads

see https://forum.freecadweb.org/viewtopic.php?f=35&t=44334#p378675
This commit is contained in:
donovaly
2020-03-21 01:21:20 +01:00
committed by WandererFan
parent 30a0047cd4
commit 6fa80d8cbf
6 changed files with 20 additions and 18 deletions

View File

@@ -1198,11 +1198,11 @@ void QGIViewDimension::drawArrows(int count, const Base::Vector2d positions[], d
arrow->setSize(QGIArrow::getPrefArrowSize());
arrow->setFlipped(flipped);
if (QGIArrow::getPrefArrowStyle() != 0) { // if not "None"
arrow->draw();
arrow->show();
}
else
if (QGIArrow::getPrefArrowStyle() != 7) { // if not "None"
arrow->draw();
arrow->show();
}
else
arrow->hide();
}
}