We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bbc486 commit 8d0dc6eCopy full SHA for 8d0dc6e
src/windows/models/emoji_model.py
@@ -152,7 +152,7 @@ def update_model(self, clear=True):
152
col = QStandardItem()
153
col.setIcon(QIcon(thumb_path))
154
col.setText("%s (%s)" % (emoji_name, emoji_type))
155
- col.setToolTip(emoji_name)
+ col.setToolTip("%s (%s)" % (emoji_name, emoji_type))
156
col.setData(emoji_type)
157
col.setFlags(Qt.ItemIsSelectable | Qt.ItemIsEnabled | Qt.ItemIsUserCheckable | Qt.ItemIsDragEnabled)
158
row.append(col)
0 commit comments