diff --git a/src/qml/presenter/ImageEditor.qml b/src/qml/presenter/ImageEditor.qml index 6a7eaf5..9ee75bd 100644 --- a/src/qml/presenter/ImageEditor.qml +++ b/src/qml/presenter/ImageEditor.qml @@ -125,8 +125,9 @@ Item { } function changeImage(image) { - root.image = image; - console.log(image.filePath.toString()); + let img = imageProxyModel.getImage(image); + root.image = img; + console.log(img.filePath.toString()); } function updateTitle(text) {