Horizon – Diff between revs 13 and 14

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 13 Rev 14
Line 29... Line 29...
29   29  
Line 30... Line 30...
30 private string _gotifyURL = string.Empty; 30 private string _gotifyURL = string.Empty;
Line -... Line 31...
-   31  
-   32 private bool _autoNotes = true;
31   33  
32 private bool _autoNotes = true; 34 private CaptureMode _captureMode = CaptureMode.Window;
33   35  
34 public NotifyFilters NotifyFilters 36 public NotifyFilters NotifyFilters
35 { 37 {
Line 195... Line 197...
195 _gotifyURL = value; 197 _gotifyURL = value;
196 OnPropertyChanged(); 198 OnPropertyChanged();
197 } 199 }
198 } 200 }
Line 199... Line 201...
199   201  
-   202 public CaptureMode CaptureMode
-   203 {
-   204 get => _captureMode;
-   205 set
-   206 {
-   207 if (value == _captureMode)
-   208 {
-   209 return;
-   210 }
-   211  
-   212 _captureMode = value;
-   213 OnPropertyChanged();
-   214 }
Line 200... Line 215...
200 public CaptureMode CaptureMode { get; set; } = CaptureMode.Window; 215 }
Line 201... Line 216...
201   216  
202 public event PropertyChangedEventHandler PropertyChanged; 217 public event PropertyChangedEventHandler PropertyChanged;