diff options
author | BulbyVR <26726264+TheDrawingCoder-Gamer@users.noreply.github.com> | 2022-04-22 12:49:57 -0400 |
---|---|---|
committer | BulbyVR <26726264+TheDrawingCoder-Gamer@users.noreply.github.com> | 2022-04-24 12:25:01 -0400 |
commit | 79ed520d591942747c8e6a646648a189bf8243b4 (patch) | |
tree | 83fbc279bcea6418fff42686ca7807dad4181db7 /src/emoji/Provider.h | |
parent | Remove sequences of _ (diff) | |
download | nheko-79ed520d591942747c8e6a646648a189bf8243b4.tar.xz |
Allow search with unicode names
Diffstat (limited to '')
-rw-r--r-- | src/emoji/Provider.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emoji/Provider.h b/src/emoji/Provider.h index f994285e..07a513ae 100644 --- a/src/emoji/Provider.h +++ b/src/emoji/Provider.h @@ -35,11 +35,13 @@ public: Q_PROPERTY(const QString &unicode MEMBER unicode) Q_PROPERTY(const QString &shortName MEMBER shortName) + Q_PROPERTY(const QString &unicodeName MEMBER unicodeName) Q_PROPERTY(emoji::Emoji::Category category MEMBER category) public: QString unicode; QString shortName; + QString unicodeName; Category category; }; |