Merge remote-tracking branch 'origin/9.0'

Conflicts:
	src/plugins/qmldesigner/components/componentcore/modelnodeoperations.cpp
	src/plugins/qmldesigner/components/stateseditornew/propertychangesmodel.cpp
	src/plugins/qmldesigner/components/stateseditornew/propertymodel.cpp
	src/plugins/qmldesigner/qmldesignerprojectmanager.cpp
	src/plugins/qmldesigner/qmldesignerprojectmanager.h

Change-Id: Ib029a830ee99190bc4ea2ad75d9300bfa86b42d9
This commit is contained in:
Tim Jenssen
2022-10-25 19:01:00 +02:00
186 changed files with 2027 additions and 1207 deletions

View File

@@ -539,6 +539,9 @@ bool isValidMountInfo(const DockerDevicePrivate::TemporaryMountInfo &mi)
if (!mi.path.isAbsolutePath() || !mi.containerPath.isAbsolutePath())
return false;
if (mi.containerPath.isRootPath())
return false;
if (!mi.path.exists())
return false;

View File

@@ -65,9 +65,9 @@ DockerDeviceWidget::DockerDeviceWidget(const IDevice::Ptr &device)
DockerApi::recheckDockerDaemon();
});
m_keepEntryPoint = new QCheckBox(Tr::tr("Don't modify entry point"));
m_keepEntryPoint = new QCheckBox(Tr::tr("Do not modify entry point"));
m_keepEntryPoint->setToolTip(
Tr::tr("If checked, the entry point of the image will not be modified. Only use this if "
Tr::tr("Prevents modifying the entry point of the image. Enable only if "
"the image starts into a shell."));
m_keepEntryPoint->setChecked(m_data.keepEntryPoint);
m_keepEntryPoint->setEnabled(true);