aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Ziller <[email protected]>2025-04-28 13:37:40 +0200
committerEike Ziller <[email protected]>2025-04-28 11:55:16 +0000
commita2fda5c048f4f91f9558c0e162bd4451751d19aa (patch)
tree0761e39834623734dda4773a5e6bd5a7a194d00b
parent80c348d00a3f9a12f599b58526806f45453df648 (diff)
iOS: Fix QML Profiling on Simulator and iOS < 17 devices16.0
Amends 21661db604437e9188f09d419c4d14a1ad5b14bd after which we have to explicitly request the QML channel. Change-Id: I63f867ea59afa529ae9c02595f6c46cb633b8e46 Reviewed-by: Jarek Kobus <[email protected]>
-rw-r--r--src/plugins/ios/iosrunner.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/ios/iosrunner.cpp b/src/plugins/ios/iosrunner.cpp
index b5e30c86448..57ff0284469 100644
--- a/src/plugins/ios/iosrunner.cpp
+++ b/src/plugins/ios/iosrunner.cpp
@@ -822,6 +822,7 @@ IosQmlProfilerSupport::IosQmlProfilerSupport(RunControl *runControl)
m_runner = new IosRunner(runControl);
m_runner->setQmlDebugging(QmlProfilerServices);
+ runControl->requestQmlChannel();
addStartDependency(m_runner);
m_profiler = runControl->createWorker(ProjectExplorer::Constants::QML_PROFILER_RUNNER);