We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e37746d + e0041fe commit b707aefCopy full SHA for b707aef
1 file changed
src/gui/EmojiPicker.qml
@@ -87,6 +87,7 @@ ColumnLayout {
87
}
88
89
GridView {
90
+ id: emojiView
91
Layout.fillWidth: true
92
Layout.fillHeight: true
93
Layout.preferredHeight: metrics.height * 8
@@ -125,6 +126,16 @@ ColumnLayout {
125
126
127
128
129
+ Label {
130
+ id: placeholderMessage
131
+ anchors.centerIn: parent
132
+ text: qsTr("No recent emojis")
133
+ color: Style.ncSecondaryTextColor
134
+ wrapMode: Text.Wrap
135
+ font.bold: true
136
+ visible: emojiView.count === 0
137
+ }
138
+
139
ScrollBar.vertical: ScrollBar {}
140
141
0 commit comments