mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
raised emote limit in colon input to 200
This commit is contained in:
parent
a23b1c7988
commit
f0b9f8ca59
2 changed files with 2 additions and 2 deletions
|
@ -103,7 +103,7 @@ void EmoteInputPopup::updateEmotes(const QString &text, ChannelPtr channel)
|
|||
emote.emote, emote.emote->name.string + " - " + emote.providerName,
|
||||
this->callback_));
|
||||
|
||||
if (count++ == maxLineCount)
|
||||
if (count++ == maxEmoteCount)
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ class EmoteInputPopup : public BasePopup
|
|||
{
|
||||
using ActionCallback = std::function<void(const QString &)>;
|
||||
|
||||
constexpr static int maxLineCount = 10;
|
||||
constexpr static int maxEmoteCount = 200;
|
||||
|
||||
public:
|
||||
EmoteInputPopup(QWidget *parent = nullptr);
|
||||
|
|
Loading…
Reference in a new issue