mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
allow max font size to be defined by user (#2488)
This commit is contained in:
parent
1cc50b2793
commit
a2a7561613
5 changed files with 25 additions and 4 deletions
|
|
@ -658,3 +658,9 @@ void SettingsCache::setUpdateReleaseChannel(int _updateReleaseChannel)
|
|||
updateReleaseChannel = _updateReleaseChannel;
|
||||
settings->setValue("personal/updatereleasechannel", updateReleaseChannel);
|
||||
}
|
||||
|
||||
void SettingsCache::setMaxFontSize(int _max)
|
||||
{
|
||||
maxFontSize = _max;
|
||||
settings->setValue("game/maxfontsize", maxFontSize);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue