From ecab3d76ee927a22d6fe6cc1756c20c42d777d01 Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Wed, 10 Aug 2022 19:57:18 +0200 Subject: [PATCH] Ensure that clear status message combo box is at least implicit width Signed-off-by: Claudio Cambra --- src/gui/UserStatusSelector.qml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/gui/UserStatusSelector.qml b/src/gui/UserStatusSelector.qml index 482505769..6f1fac73f 100644 --- a/src/gui/UserStatusSelector.qml +++ b/src/gui/UserStatusSelector.qml @@ -280,16 +280,27 @@ ColumnLayout { RowLayout { Layout.fillWidth: true - spacing: Style.standardSpacing + spacing: Style.smallSpacing Label { + id: clearComboLabel + + Layout.fillWidth: true + Layout.fillHeight: true + verticalAlignment: Text.AlignVCenter + text: qsTr("Clear status message after") color: Style.ncTextColor + wrapMode: Text.Wrap } BasicComboBox { id: clearComboBox + Layout.fillWidth: true + Layout.fillHeight: true + Layout.minimumWidth: implicitWidth + model: userStatusSelectorModel.clearStageTypes textRole: "display" valueRole: "clearStageType" -- 2.30.2