mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-04 06:24:41 +02:00
fix
This commit is contained in:
parent
126bfba512
commit
42a96a94b4
1 changed files with 5 additions and 2 deletions
|
@ -78,8 +78,11 @@ Item {
|
||||||
hoverEnabled: true
|
hoverEnabled: true
|
||||||
onEntered: breadcrumbText.color = "#1fc6a6";
|
onEntered: breadcrumbText.color = "#1fc6a6";
|
||||||
onExited: breadcrumbText.color = "#ffffff";
|
onExited: breadcrumbText.color = "#ffffff";
|
||||||
// navigate back to parent level menu
|
// navigate back to parent level menu if there is one
|
||||||
onClicked: menuPopperUpper.closeLastMenu();
|
onClicked:
|
||||||
|
if (breadcrumbText.text !== "Menu) {
|
||||||
|
menuPopperUpper.closeLastMenu();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue