1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Set Emoticon Widget input to 8x8 instead of 5x3 for larger emoticon sets

This commit is contained in:
Joseph Anania III 2015-02-07 16:24:59 -05:00
parent 4985175a05
commit 84c038c24d

View File

@ -40,8 +40,8 @@ EmoticonsWidget::EmoticonsWidget(QWidget *parent) :
layout.addWidget(pageButtonsContainer);
const int maxCols = 5;
const int maxRows = 3;
const int maxCols = 8;
const int maxRows = 8;
const int itemsPerPage = maxRows * maxCols;
const QList<QStringList>& emoticons = SmileyPack::getInstance().getEmoticons();