Skip to content

Commit 97c6183

Browse files
committed
Fixed #15766
1 parent b5def9f commit 97c6183

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/utils/gui/settings/GUIVisualizationSettings.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,10 @@ GUIVisualizationSettings::checkDrawJunction(const Boundary& b, const bool select
705705

706706
bool
707707
GUIVisualizationSettings::checkDrawEdge(const Boundary& b) const {
708-
if (disableHideByZoom) {
708+
if (drawForViewObjectsHandler) {
709+
// needed if we're selecting using a rectangle
710+
return true;
711+
} else if (disableHideByZoom) {
709712
return true;
710713
} else if (myIgnoreHideByZoom) {
711714
return true;

0 commit comments

Comments
 (0)