Browse Source

fix(UI): bump default emoticon size, since otherwise it can be too small

E.g. #3777
reviewable/pr3778/r1
Zetok Zalbavar 9 years ago
parent
commit
bbdd4f044c
No known key found for this signature in database
GPG Key ID: C953D3880212068A
  1. 2
      src/persistence/settings.cpp

2
src/persistence/settings.cpp

@ -248,7 +248,7 @@ void Settings::loadGlobal()
if (!SmileyPack::isValid(smileyPack)) if (!SmileyPack::isValid(smileyPack))
smileyPack = DEFAULT_SMILEYS; smileyPack = DEFAULT_SMILEYS;
emojiFontPointSize = s.value("emojiFontPointSize", 16).toInt(); emojiFontPointSize = s.value("emojiFontPointSize", 24).toInt();
firstColumnHandlePos = s.value("firstColumnHandlePos", 50).toInt(); firstColumnHandlePos = s.value("firstColumnHandlePos", 50).toInt();
secondColumnHandlePosFromRight = s.value("secondColumnHandlePosFromRight", 50).toInt(); secondColumnHandlePosFromRight = s.value("secondColumnHandlePosFromRight", 50).toInt();
timestampFormat = s.value("timestampFormat", "hh:mm:ss").toString(); timestampFormat = s.value("timestampFormat", "hh:mm:ss").toString();

Loading…
Cancel
Save