mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
Add option to hide status bar (#5983)
* reorganize actions * add setting to settingsCache * use setting * add shortcut * fix typo
This commit is contained in:
parent
f059643187
commit
da2488f7d8
7 changed files with 44 additions and 3 deletions
|
|
@ -237,6 +237,7 @@ SettingsCache::SettingsCache()
|
|||
redirectCacheTtl = settings->value("personal/redirectCacheTtl", NETWORK_REDIRECT_CACHE_TTL_DEFAULT).toInt();
|
||||
|
||||
picDownload = settings->value("personal/picturedownload", true).toBool();
|
||||
showStatusBar = settings->value("personal/showStatusBar", true).toBool();
|
||||
|
||||
mainWindowGeometry = settings->value("interface/main_window_geometry").toByteArray();
|
||||
tokenDialogGeometry = settings->value("interface/token_dialog_geometry").toByteArray();
|
||||
|
|
@ -589,6 +590,13 @@ void SettingsCache::setPicDownload(QT_STATE_CHANGED_T _picDownload)
|
|||
emit picDownloadChanged();
|
||||
}
|
||||
|
||||
void SettingsCache::setShowStatusBar(bool value)
|
||||
{
|
||||
showStatusBar = value;
|
||||
settings->setValue("personal/showStatusBar", showStatusBar);
|
||||
emit showStatusBarChanged(value);
|
||||
}
|
||||
|
||||
void SettingsCache::setNotificationsEnabled(QT_STATE_CHANGED_T _notificationsEnabled)
|
||||
{
|
||||
notificationsEnabled = static_cast<bool>(_notificationsEnabled);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue