mirror of
https://github.com/lubosz/overte.git
synced 2025-04-23 16:14:01 +02:00
Merge pull request #14003 from danteruiz/snap-fix
Fix snapshot settings issue in HMD
This commit is contained in:
commit
cb8e3c6452
1 changed files with 10 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue