mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 19:30:41 +02:00
Merge pull request #12084 from zfox23/commerce_fixSecurityPicChange
Fix Security Pic Change dialog after QML security changes
This commit is contained in:
commit
eafb198fd7
1 changed files with 2 additions and 2 deletions
|
@ -66,7 +66,7 @@ Item {
|
||||||
source: "image://security/securityImage";
|
source: "image://security/securityImage";
|
||||||
cache: false;
|
cache: false;
|
||||||
onVisibleChanged: {
|
onVisibleChanged: {
|
||||||
commerce.getSecurityImage();
|
Commerce.getSecurityImage();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Item {
|
Item {
|
||||||
|
@ -194,7 +194,7 @@ Item {
|
||||||
securityImageSubmitButton.text = "Submitting...";
|
securityImageSubmitButton.text = "Submitting...";
|
||||||
securityImageSubmitButton.enabled = false;
|
securityImageSubmitButton.enabled = false;
|
||||||
var securityImagePath = securityImageSelection.getImagePathFromImageID(securityImageSelection.getSelectedImageIndex())
|
var securityImagePath = securityImageSelection.getImagePathFromImageID(securityImageSelection.getSelectedImageIndex())
|
||||||
commerce.chooseSecurityImage(securityImagePath);
|
Commerce.chooseSecurityImage(securityImagePath);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue