File tree Expand file tree Collapse file tree 1 file changed +28
-2
lines changed
Plugins/Flow.Launcher.Plugin.Url Expand file tree Collapse file tree 1 file changed +28
-2
lines changed Original file line number Diff line number Diff line change 2
2
{
3
3
public class Settings : BaseModel
4
4
{
5
- public bool UseCustomBrowser { get ; set ; } = false ;
5
+ private bool _useCustomBrowser = false ;
6
+ public bool UseCustomBrowser
7
+ {
8
+ get => _useCustomBrowser ;
9
+ set
10
+ {
11
+ if ( _useCustomBrowser != value )
12
+ {
13
+ _useCustomBrowser = value ;
14
+ OnPropertyChanged ( ) ;
15
+ }
16
+ }
17
+ }
6
18
7
19
private string _browserPath = string . Empty ;
8
20
public string BrowserPath
@@ -18,8 +30,22 @@ public string BrowserPath
18
30
}
19
31
}
20
32
21
- public bool OpenInNewBrowserWindow { get ; set ; } = false ;
33
+ private bool _openInNewBrowserWindow = false ;
34
+ public bool OpenInNewBrowserWindow
35
+ {
36
+ get => _openInNewBrowserWindow ;
37
+ set
38
+ {
39
+ if ( _openInNewBrowserWindow != value )
40
+ {
41
+ _openInNewBrowserWindow = value ;
42
+ OnPropertyChanged ( ) ;
43
+ }
44
+ }
45
+ }
22
46
23
47
public bool OpenInPrivateMode { get ; set ; } = false ;
48
+
49
+ public string PrivateModeArgument { get ; set ; } = string . Empty ;
24
50
}
25
51
}
You can’t perform that action at this time.
0 commit comments