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 53f965f commit 9369589Copy full SHA for 9369589
Flow.Launcher.Infrastructure/UserSettings/CustomBrowserViewModel.cs
@@ -1,4 +1,5 @@
1
using Flow.Launcher.Plugin;
2
+using System.Text.Json.Serialization;
3
4
namespace Flow.Launcher.Infrastructure.UserSettings
5
{
@@ -9,6 +10,7 @@ public class CustomBrowserViewModel : BaseModel
9
10
public string PrivateArg { get; set; }
11
public bool EnablePrivate { get; set; }
12
public bool OpenInTab { get; set; } = true;
13
+ [JsonIgnore]
14
public bool OpenInNewWindow => !OpenInTab;
15
public bool Editable { get; set; } = true;
16
0 commit comments