forked from qt-creator/qt-creator
ios: ensure that device and simulator scan with a developerPath
Change-Id: Ifcc8d8f5c389c963ee1b6c2d2d2437bd5429f843 Reviewed-by: Fawzi Mohamed <fawzi.mohamed@theqtcompany.com>
This commit is contained in:
committed by
Fawzi Mohamed
parent
6376d01e8b
commit
a1f8bc4c5f
@@ -362,8 +362,6 @@ void IosConfigurations::initialize()
|
|||||||
{
|
{
|
||||||
QTC_CHECK(m_instance == 0);
|
QTC_CHECK(m_instance == 0);
|
||||||
m_instance = new IosConfigurations(0);
|
m_instance = new IosConfigurations(0);
|
||||||
m_instance->updateSimulators();
|
|
||||||
QTimer::singleShot(10000, IosDeviceManager::instance(), SLOT(monitorAvailableDevices()));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool IosConfigurations::ignoreAllDevices()
|
bool IosConfigurations::ignoreAllDevices()
|
||||||
@@ -422,10 +420,15 @@ void IosConfigurations::updateSimulators()
|
|||||||
|
|
||||||
void IosConfigurations::setDeveloperPath(const FileName &devPath)
|
void IosConfigurations::setDeveloperPath(const FileName &devPath)
|
||||||
{
|
{
|
||||||
|
static bool hasDevPath = false;
|
||||||
if (devPath != m_instance->m_developerPath) {
|
if (devPath != m_instance->m_developerPath) {
|
||||||
m_instance->m_developerPath = devPath;
|
m_instance->m_developerPath = devPath;
|
||||||
m_instance->save();
|
m_instance->save();
|
||||||
updateAutomaticKitList();
|
if (!hasDevPath && !devPath.isEmpty()) {
|
||||||
|
hasDevPath = true;
|
||||||
|
QTimer::singleShot(1000, IosDeviceManager::instance(), SLOT(monitorAvailableDevices()));
|
||||||
|
m_instance->updateSimulators();
|
||||||
|
}
|
||||||
emit m_instance->updated();
|
emit m_instance->updated();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user