Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudio Cambra <claudio.cambra@gmail.com>2022-08-10 20:57:18 +0300
committerClaudio Cambra <claudio.cambra@gmail.com>2022-08-10 21:03:04 +0300
commitb27956088e6a94fe554999cab243a50f5369e283 (patch)
treec90c6316a303953a3ab100e0ae2202e6fc1e3d9a
parentddcb8344377684dc6cbe3d612f5d22336b0586c6 (diff)
Ensure that clear status message combo box is at least implicit widthbugfix/clear-combo-label-width
Signed-off-by: Claudio Cambra <claudio.cambra@gmail.com>
-rw-r--r--src/gui/UserStatusSelector.qml13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/gui/UserStatusSelector.qml b/src/gui/UserStatusSelector.qml
index 68809ae4b..247969540 100644
--- a/src/gui/UserStatusSelector.qml
+++ b/src/gui/UserStatusSelector.qml
@@ -277,16 +277,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"