We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 1e7149e commit e172356Copy full SHA for e172356
src/gui/layout/qgslayoutview.cpp
@@ -115,7 +115,11 @@ void QgsLayoutView::setTool( QgsLayoutViewTool *tool )
115
mTool->deactivate();
116
}
117
118
- mSnapMarker->setVisible( false );
+ mSnapMarker->hide();
119
+ if ( mHorizontalSnapLine )
120
+ mHorizontalSnapLine->hide();
121
+ if ( mVerticalSnapLine )
122
+ mVerticalSnapLine->hide();
123
124
// activate new tool before setting it - gives tools a chance
125
// to respond to whatever the current tool is
0 commit comments