diff --git a/src/qml/qgismobileapp.qml b/src/qml/qgismobileapp.qml index 171c1c26da..e7301b9d19 100644 --- a/src/qml/qgismobileapp.qml +++ b/src/qml/qgismobileapp.qml @@ -379,7 +379,9 @@ ApplicationWindow { } else if (geometryEditorsToolbar.editorRubberbandModel && geometryEditorsToolbar.editorRubberbandModel.vertexCount > 1) { coordinateLocator.sourceLocation = mapCanvas.mapSettings.coordinateToScreen(geometryEditorsToolbar.editorRubberbandModel.lastCoordinate); } else { - coordinateLocator.sourceLocation = undefined; + if (!digitizingToolbar.rubberbandModel.frozen) { + coordinateLocator.sourceLocation = undefined; + } } } }