HamBook – Diff between revs 12 and 14

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 12 Rev 14
Line 21... Line 21...
21 private RJCP.IO.Ports.Handshake _handshake = RJCP.IO.Ports.Handshake.None; 21 private RJCP.IO.Ports.Handshake _handshake = RJCP.IO.Ports.Handshake.None;
22 private SerialPortTimeout _serialPortTimeout = new SerialPortTimeout(); 22 private SerialPortTimeout _serialPortTimeout = new SerialPortTimeout();
23 private int _scanDetectPause = 10; 23 private int _scanDetectPause = 10;
24 private Audio _audio = new Audio(); 24 private Audio _audio = new Audio();
25 private Notifications _notifications = new Notifications(); 25 private Notifications _notifications = new Notifications();
-   26 private Visualisations _visualisations = new Visualisations();
Line 26... Line 27...
26   27  
27 public bool LaunchOnBoot 28 public bool LaunchOnBoot
28 { 29 {
29 get => _launchOnBoot; 30 get => _launchOnBoot;
Line 214... Line 215...
214   215  
215 _notifications = value; 216 _notifications = value;
216 OnPropertyChanged(); 217 OnPropertyChanged();
217 } 218 }
-   219 }
-   220 public Visualisations Visualisations
-   221 {
-   222 get => _visualisations;
-   223 set
-   224 {
-   225 if (value == _visualisations)
-   226 {
-   227 return;
-   228 }
-   229  
-   230 _visualisations = value;
-   231 OnPropertyChanged();
-   232 }
Line 218... Line 233...
218 } 233 }
219   234  
220 public Configuration() 235 public Configuration()