Skip to content

Commit 8d0dc6e

Browse files
committed
Adding filter group to emoji tooltip
1 parent 2bbc486 commit 8d0dc6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/windows/models/emoji_model.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def update_model(self, clear=True):
152152
col = QStandardItem()
153153
col.setIcon(QIcon(thumb_path))
154154
col.setText("%s (%s)" % (emoji_name, emoji_type))
155-
col.setToolTip(emoji_name)
155+
col.setToolTip("%s (%s)" % (emoji_name, emoji_type))
156156
col.setData(emoji_type)
157157
col.setFlags(Qt.ItemIsSelectable | Qt.ItemIsEnabled | Qt.ItemIsUserCheckable | Qt.ItemIsDragEnabled)
158158
row.append(col)

0 commit comments

Comments
 (0)