Check if dialog was opened from StackView and then pop or just go to home menu

This commit is contained in:
Vladyslav Stelmakhovskyi 2017-04-09 20:09:15 +02:00
parent aa89903a9f
commit 7628916db6

View file

@ -66,7 +66,11 @@ TabletModalWindow {
HifiConstants { id: hifi }
onCanceled: {
loginDialogRoot.Stack.view.pop()
if (loginDialogRoot.Stack.view !== null) {
loginDialogRoot.Stack.view.pop()
} else {
Tablet.getTablet("com.highfidelity.interface.tablet.system").gotoHomeScreen();
}
}
LoginDialog {