Gui: issue #9205: Default settings make it hard to select objects in the 3D window

This commit is contained in:
wmayer
2023-10-26 15:03:18 +02:00
committed by Chris Hennes
parent cf84c171e6
commit 89c8e7a76c

View File

@@ -288,7 +288,7 @@ SoFCUnifiedSelection::getPickedList(SoHandleEventAction* action, bool singlePick
int cur_prio = getPriority(info.pp);
const SbVec3f& cur_pt = info.pp->getPoint();
if ((cur_prio > picked_prio) && picked_pt.equals(cur_pt, 0.01f)) {
if ((cur_prio > picked_prio) && picked_pt.equals(cur_pt, 0.2F)) {
itPicked = it;
picked_prio = cur_prio;
}