From 7dc4f9b170fdabb36b69b4edfd2208350177596e Mon Sep 17 00:00:00 2001 From: Josef Nemec Date: Fri, 25 Jan 2019 10:16:59 +0100 Subject: [PATCH] Tweaked default configuration for Epic and itch.io --- source/Plugins/EpicLibrary/EpicLibrarySettings.cs | 2 +- source/Plugins/ItchioLibrary/ItchioLibrarySettings.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Plugins/EpicLibrary/EpicLibrarySettings.cs b/source/Plugins/EpicLibrary/EpicLibrarySettings.cs index 910339690..173865ab7 100644 --- a/source/Plugins/EpicLibrary/EpicLibrarySettings.cs +++ b/source/Plugins/EpicLibrary/EpicLibrarySettings.cs @@ -25,7 +25,7 @@ public class EpicLibrarySettings : ObservableObject, ISettings #region Settings - public bool ImportInstalledGames { get; set; } = true; + public bool ImportInstalledGames { get; set; } = EpicLauncher.IsInstalled; public bool ImportUninstalledGames { get; set; } = false; diff --git a/source/Plugins/ItchioLibrary/ItchioLibrarySettings.cs b/source/Plugins/ItchioLibrary/ItchioLibrarySettings.cs index 8f2663da2..64fae9061 100644 --- a/source/Plugins/ItchioLibrary/ItchioLibrarySettings.cs +++ b/source/Plugins/ItchioLibrary/ItchioLibrarySettings.cs @@ -20,7 +20,7 @@ public class ItchioLibrarySettings : ObservableObject, ISettings #region Settings - public bool ImportInstalledGames { get; set; } = true; + public bool ImportInstalledGames { get; set; } = Itch.IsInstalled; public bool ImportUninstalledGames { get; set; } = false;