mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 12:38:27 +02:00
Merge branch 'master' of github.com:highfidelity/hifi into yellow
This commit is contained in:
commit
fd3e3aba7b
2 changed files with 27 additions and 22 deletions
|
@ -257,6 +257,7 @@ endif()
|
|||
|
||||
def installQt(self):
|
||||
qt5InstallPath = self.getQt5InstallPath()
|
||||
if os.getenv('QT_CMAKE_PREFIX_PATH') == None:
|
||||
if not os.path.isdir(qt5InstallPath):
|
||||
print ('Downloading Qt from AWS')
|
||||
dest, tail = os.path.split(qt5InstallPath)
|
||||
|
|
|
@ -43,7 +43,9 @@ Item {
|
|||
}
|
||||
|
||||
if (HMD.active) {
|
||||
if (gotoPreviousApp) {
|
||||
if (gotoPreviousAppFromScript) {
|
||||
dialog.parent.sendToScript("returnToPreviousApp");
|
||||
} else if (gotoPreviousApp) {
|
||||
tablet.returnToPreviousApp();
|
||||
} else {
|
||||
tablet.popFromStack();
|
||||
|
@ -60,7 +62,9 @@ Item {
|
|||
}
|
||||
|
||||
if (HMD.active) {
|
||||
if (gotoPreviousApp) {
|
||||
if (gotoPreviousAppFromScript) {
|
||||
dialog.parent.sendToScript("returnToPreviousApp");
|
||||
} else if (gotoPreviousApp) {
|
||||
tablet.returnToPreviousApp();
|
||||
} else {
|
||||
tablet.popFromStack();
|
||||
|
|
Loading…
Reference in a new issue