Merge pull request #14003 from danteruiz/snap-fix

Fix snapshot settings issue in HMD
This commit is contained in:
John Conklin II 2018-09-14 15:34:22 -07:00 committed by GitHub
commit cb8e3c6452
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,7 +42,11 @@ Item {
}
if (HMD.active) {
tablet.popFromStack();
if (gotoPreviousApp) {
tablet.returnToPreviousApp();
} else {
tablet.popFromStack();
}
} else {
closeDialog();
}
@ -55,7 +59,11 @@ Item {
}
if (HMD.active) {
tablet.popFromStack();
if (gotoPreviousApp) {
tablet.returnToPreviousApp();
} else {
tablet.popFromStack();
}
} else {
closeDialog();
}