mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-28 17:57:16 +02:00
[Viewer] Viewer2D: Fix check on image status for the resolution display
This commit is contained in:
parent
9c99efb3e4
commit
d4addec996
1 changed files with 1 additions and 1 deletions
|
@ -1044,7 +1044,7 @@ FocusScope {
|
|||
|
||||
// zoom label
|
||||
MLabel {
|
||||
text: ((imgContainer.image && (imgContainer.image.status === Image.Ready)) ? imgContainer.scale.toFixed(2) : "1.00") + "x"
|
||||
text: ((imgContainer.image && (imgContainer.image.imageStatus === Image.Ready)) ? imgContainer.scale.toFixed(2) : "1.00") + "x"
|
||||
MouseArea {
|
||||
anchors.fill: parent
|
||||
acceptedButtons: Qt.LeftButton | Qt.RightButton
|
||||
|
|
Loading…
Add table
Reference in a new issue