From 847a56288da78468b4d2b3199798ce8a353a0905 Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Thu, 12 Jun 2025 10:52:30 +0300 Subject: [PATCH] rename to general_settings --- src/qt_gui/gui_settings.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/qt_gui/gui_settings.h b/src/qt_gui/gui_settings.h index cedffcab4..da5542956 100644 --- a/src/qt_gui/gui_settings.h +++ b/src/qt_gui/gui_settings.h @@ -8,15 +8,15 @@ namespace gui { // categories -const QString general = "general"; +const QString general_settings = "general_settings"; const QString main_window = "main_window"; const QString game_list = "game_list"; const QString game_grid = "game_grid"; // general -const gui_value gen_checkForUpdates = gui_value(general, "checkForUpdates", false); -const gui_value gen_showChangeLog = gui_value(general, "showChangeLog", false); -const gui_value gen_updateChannel = gui_value(general, "updateChannel", "Release"); +const gui_value gen_checkForUpdates = gui_value(general_settings, "checkForUpdates", false); +const gui_value gen_showChangeLog = gui_value(general_settings, "showChangeLog", false); +const gui_value gen_updateChannel = gui_value(general_settings, "updateChannel", "Release"); // main window settings const gui_value mw_geometry = gui_value(main_window, "geometry", QByteArray());