Squish: Close Link with Qt banner at startup

Change-Id: I02e9a1b4eecc21804a2570a72cbdc0b19ae4f7a1
Reviewed-by: Robert Loehning <robert.loehning@qt.io>
This commit is contained in:
Christian Stenger
2020-01-27 10:28:24 +01:00
parent 5dcd9685f9
commit 51cc14c738
3 changed files with 5 additions and 3 deletions

View File

@@ -30,7 +30,7 @@ def startCreatorVerifyingClang(useClang):
try:
# start Qt Creator with / without enabled ClangCodeModel plugin (without modifying settings)
loadOrNoLoad = '-load' if useClang else '-noload'
startQC([loadOrNoLoad, 'ClangCodeModel'], cancelTour=firstStart)
startQC([loadOrNoLoad, 'ClangCodeModel'], closeLinkToQt=firstStart, cancelTour=firstStart)
firstStart = False
except RuntimeError:
t, v = sys.exc_info()[:2]