mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-23 15:13:55 -07:00
Font size defaults (#2521)
This commit is contained in:
parent
a2a7561613
commit
b5b9527c13
3 changed files with 8 additions and 4 deletions
|
|
@ -24,6 +24,8 @@ class ReleaseChannel;
|
|||
#define DEFAULT_LANG_CODE "en"
|
||||
#define DEFAULT_LANG_NAME "English"
|
||||
|
||||
#define DEFAULT_FONT_SIZE 12
|
||||
|
||||
class QSettings;
|
||||
|
||||
class SettingsCache : public QObject {
|
||||
|
|
@ -188,7 +190,7 @@ public:
|
|||
bool getSpectatorsCanSeeEverything() const { return spectatorsCanSeeEverything; }
|
||||
bool getRememberGameSettings() const { return rememberGameSettings; }
|
||||
int getKeepAlive() const { return keepalive; }
|
||||
int getMaxFontSize() const { return (maxFontSize > 1) ? maxFontSize : 9; }
|
||||
int getMaxFontSize() const { return maxFontSize; }
|
||||
void setClientID(QString clientID);
|
||||
void setKnownMissingFeatures(QString _knownMissingFeatures);
|
||||
QString getClientID() { return clientID; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue