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:
-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"