aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/android/androiddeployqtstep.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2023-05-02 12:51:03 +0200
committerhjk <hjk@qt.io>2023-05-03 13:44:19 +0000
commit50084f6b0ed78bfee6f5e1d2e56ade9b52b3f2f6 (patch)
tree2b37874169711de1464403557f8ecf785864b24f /src/plugins/android/androiddeployqtstep.cpp
parent70b02d23e1a32a1c4911644cb73b7247430a4416 (diff)
Layouting: Handle attach types via setter
Change-Id: I862f5cd109db3582b4f029787ec0cded2da39ce6 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
Diffstat (limited to 'src/plugins/android/androiddeployqtstep.cpp')
-rw-r--r--src/plugins/android/androiddeployqtstep.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/android/androiddeployqtstep.cpp b/src/plugins/android/androiddeployqtstep.cpp
index f108b1880f..9d288fc5a0 100644
--- a/src/plugins/android/androiddeployqtstep.cpp
+++ b/src/plugins/android/androiddeployqtstep.cpp
@@ -606,7 +606,8 @@ QWidget *AndroidDeployQtStep::createConfigWidget()
Layouting::Form builder;
builder.addRow({m_uninstallPreviousPackage});
builder.addRow({installCustomApkButton});
- builder.attachTo(widget, Layouting::WithoutMargins);
+ builder.addItem(Layouting::noMargin);
+ builder.attachTo(widget);
return widget;
}