Skip to content

Commit

Permalink
Disable log-checking by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
Frodo45127 committed Feb 23, 2025
1 parent 24d0223 commit 59a172e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runcher/src/settings_ui/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ pub unsafe fn init_settings(main_window: &QPtr<QMainWindow>) {
set_setting_if_new_bool(&q_settings, "check_updates_on_start", true);
set_setting_if_new_bool(&q_settings, "check_schema_updates_on_start", true);
set_setting_if_new_bool(&q_settings, "dark_mode", false);
set_setting_if_new_bool(&q_settings, "check_logs", true);
set_setting_if_new_bool(&q_settings, "check_logs", false);

for game in &SUPPORTED_GAMES.games_sorted() {
if game.key() != KEY_ARENA {
Expand Down

0 comments on commit 59a172e

Please sign in to comment.