From: Claudio Cambra Date: Wed, 10 Aug 2022 17:57:18 +0000 (+0200) Subject: Ensure that clear status message combo box is at least implicit width X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~15^2~29^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ecab3d76ee927a22d6fe6cc1756c20c42d777d01;p=nextcloud-desktop.git Ensure that clear status message combo box is at least implicit width Signed-off-by: Claudio Cambra --- 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"