HamBook – Diff between revs 21 and 32

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 21 Rev 32
Line 11... Line 11...
11 namespace Configuration 11 namespace Configuration
12 { 12 {
13 public class Navigation : INotifyPropertyChanged 13 public class Navigation : INotifyPropertyChanged
14 { 14 {
15 private int _frequencyStep = 100; 15 private int _frequencyStep = 100;
-   16 private bool _mouseScrollSound = true;
Line 16... Line 17...
16   17  
17 public int FrequencyStep 18 public int FrequencyStep
18 { 19 {
19 get => _frequencyStep; 20 get => _frequencyStep;
Line 27... Line 28...
27 _frequencyStep = value; 28 _frequencyStep = value;
28 OnPropertyChanged(); 29 OnPropertyChanged();
29 } 30 }
30 } 31 }
Line -... Line 32...
-   32  
-   33 public bool MouseScrollSound
-   34 {
-   35 get => _mouseScrollSound;
-   36 set
-   37 {
-   38 if (value == _mouseScrollSound)
-   39 {
-   40 return;
-   41 }
-   42  
-   43 _mouseScrollSound = value;
-   44 OnPropertyChanged();
-   45 }
-   46 }
31   47  
32 public Navigation() 48 public Navigation()
Line 33... Line 49...
33 { 49 {