Winify – Diff between revs 50 and 55

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 50 Rev 55
Line 9... Line 9...
9 public class Configuration : INotifyPropertyChanged 9 public class Configuration : INotifyPropertyChanged
10 { 10 {
11 private bool _launchOnBoot; 11 private bool _launchOnBoot;
12 private bool _ignoreSelfSignedCertificates; 12 private bool _ignoreSelfSignedCertificates;
13 private Proxy _proxy = new Proxy(); 13 private Proxy _proxy = new Proxy();
-   14 private int _toastDuration = 5000;
-   15 private bool _infiniteToastDuration;
Line 14... Line 16...
14   16  
15 public bool LaunchOnBoot 17 public bool LaunchOnBoot
16 { 18 {
17 get => _launchOnBoot; 19 get => _launchOnBoot;
Line 32... Line 34...
32 _ignoreSelfSignedCertificates = value; 34 _ignoreSelfSignedCertificates = value;
33 OnPropertyChanged(); 35 OnPropertyChanged();
34 } 36 }
35 } 37 }
Line -... Line 38...
-   38  
-   39 public int ToastDuration
-   40 {
-   41 get => _toastDuration;
-   42 set
-   43 {
-   44 if (value == _toastDuration) return;
-   45 _toastDuration = value;
-   46 OnPropertyChanged();
-   47 }
-   48 }
-   49  
-   50 public bool InfiniteToastDuration
-   51 {
-   52 get => _infiniteToastDuration;
-   53 set
-   54 {
-   55 if (value == _infiniteToastDuration) return;
-   56 _infiniteToastDuration = value;
-   57 OnPropertyChanged();
-   58 }
-   59 }
36   60  
37 public Proxy Proxy 61 public Proxy Proxy
38 { 62 {
39 get => _proxy; 63 get => _proxy;
40 set 64 set