From 62e84f129ab69f58e710f26f6b16f4384b1f3fe3 Mon Sep 17 00:00:00 2001 From: Assam Boudjelthia Date: Sat, 24 Oct 2020 19:41:09 +0300 Subject: [PATCH] Android: fix "uninstall app first" checkbox placement Change-Id: I2f79e9a5c344e5364fa377422f682f8e0c2927e2 Reviewed-by: Alessandro Portale --- src/plugins/android/androiddeployqtstep.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/android/androiddeployqtstep.cpp b/src/plugins/android/androiddeployqtstep.cpp index 3776b55c33a..3d52d70bd9d 100644 --- a/src/plugins/android/androiddeployqtstep.cpp +++ b/src/plugins/android/androiddeployqtstep.cpp @@ -90,7 +90,8 @@ AndroidDeployQtStep::AndroidDeployQtStep(BuildStepList *parent, Utils::Id id) m_uninstallPreviousPackage = addAspect(); m_uninstallPreviousPackage->setSettingsKey(UninstallPreviousPackageKey); - m_uninstallPreviousPackage->setLabel(tr("Uninstall the existing app first")); + m_uninstallPreviousPackage->setLabel(tr("Uninstall the existing app first"), + BoolAspect::LabelPlacement::AtCheckBox); m_uninstallPreviousPackage->setValue(false); const QtSupport::BaseQtVersion * const qt = QtSupport::QtKitAspect::qtVersion(kit());