We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 527042e commit af96675Copy full SHA for af96675
src/app/vertextool/qgsvertextool.cpp
@@ -2585,7 +2585,18 @@ void QgsVertexTool::toggleVertexCurve()
2585
}
2586
2587
if ( mDraggingVertex )
2588
+ {
2589
stopDragging();
2590
+ if( mDraggingVertexType == AddingVertex || mDraggingVertexType == AddingEndpoint )
2591
2592
+ QgisApp::instance()->messageBar()->pushMessage(
2593
+ tr( "Could not convert vertex" ),
2594
+ tr( "Cannot convert vertex before it is added." ),
2595
+ Qgis::Warning );
2596
+ return;
2597
+ }
2598
+
2599
2600
2601
QgsVectorLayer *layer = toConvert.layer;
2602
0 commit comments