Skip to content

Commit

Permalink
Fix warning flooding the console
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Nov 20, 2024
1 parent 203df44 commit 5abe8fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qml/qgismobileapp.qml
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ ApplicationWindow {
} else if (geometryEditorsToolbar.editorRubberbandModel && geometryEditorsToolbar.editorRubberbandModel.vertexCount > 1) {
coordinateLocator.sourceLocation = mapCanvas.mapSettings.coordinateToScreen(geometryEditorsToolbar.editorRubberbandModel.lastCoordinate);
} else {
if (!digitizingToolbar.rubberbandModel.frozen) {
if (digitizingToolbar.rubberbandModel == undefined || !digitizingToolbar.rubberbandModel.frozen) {
coordinateLocator.sourceLocation = undefined;
}
}
Expand Down

0 comments on commit 5abe8fe

Please sign in to comment.