We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7960b7d commit cf13063Copy full SHA for cf13063
src/Files.App/Services/Settings/GeneralSettingsService.cs
@@ -1,10 +1,7 @@
1
// Copyright (c) 2023 Files Community
2
// Licensed under the MIT License. See the LICENSE.
3
4
-using Files.App.Utils.Serialization;
5
-using Files.Core.Services.Settings;
6
using Microsoft.AppCenter.Analytics;
7
-using System.Collections.Generic;
8
9
namespace Files.App.Services.Settings
10
{
@@ -210,7 +207,11 @@ public bool ShowOpenInNewPane
210
207
211
208
public bool LeaveAppRunning
212
209
+#if STORE || STABLE || PREVIEW
213
get => Get(true);
+#else
+ get => Get(false);
214
+#endif
215
set => Set(value);
216
}
217
0 commit comments