We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 684cd34 commit 9c683a0Copy full SHA for 9c683a0
app/qml/form/editors/MMFormPhotoEditor.qml
@@ -93,7 +93,12 @@ MMFormPhotoViewer {
93
photoUrl: internal.tempSketchedImageSource ? internal.tempSketchedImageSource : internal.resolvedImageSource
94
hasCameraCapability: __androidUtils.isAndroid || __iosUtils.isIos
95
96
- on_FieldValueChanged: internal.setImageSource()
+ on_FieldValueChanged: function (){
97
+ internal.setImageSource()
98
+ // after editing geometry this needs to be triggered to populate internal.tempSketchedImageSource for components,
99
+ // which were not in view
100
+ sketchingController?.prepareController()
101
+ }
102
on_FieldValueIsNullChanged: internal.setImageSource()
103
104
onCapturePhotoClicked: internal.capturePhoto()
0 commit comments