mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-02 02:42:05 +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
|
// zoom label
|
||||||
MLabel {
|
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 {
|
MouseArea {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
acceptedButtons: Qt.LeftButton | Qt.RightButton
|
acceptedButtons: Qt.LeftButton | Qt.RightButton
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue