Horizon – Diff between revs 7 and 13

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 7 Rev 13
Line 27... Line 27...
27   27  
Line 28... Line 28...
28 private bool _enableGotify = false; 28 private bool _enableGotify = false;
Line -... Line 29...
-   29  
-   30 private string _gotifyURL = string.Empty;
29   31  
30 private string _gotifyURL = string.Empty; 32 private bool _autoNotes = true;
31   33  
32 public NotifyFilters NotifyFilters 34 public NotifyFilters NotifyFilters
33 { 35 {
Line 163... Line 165...
163 _enableGotify = value; 165 _enableGotify = value;
164 OnPropertyChanged(); 166 OnPropertyChanged();
165 } 167 }
166 } 168 }
Line -... Line 169...
-   169  
-   170 public bool AutoNotes
-   171 {
-   172 get => _autoNotes;
-   173 set
-   174 {
-   175 if (value == _autoNotes)
-   176 {
-   177 return;
-   178 }
-   179  
-   180 _autoNotes = value;
-   181 OnPropertyChanged();
-   182 }
-   183 }
167   184  
168 public string GotifyURL 185 public string GotifyURL
169 { 186 {
170 get => _gotifyURL; 187 get => _gotifyURL;
171 set 188 set