Toasts – Diff between revs 32 and 34

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 32 Rev 34
Line 16... Line 16...
16 private bool _enableChime; 16 private bool _enableChime;
17 private byte[] _chime; 17 private byte[] _chime;
18 private int _lingerTime; 18 private int _lingerTime;
19 private Image _image; 19 private Image _image;
20 private string _content; 20 private string _content;
-   21 private float _contentHeight;
Line 21... Line 22...
21   22  
22 public string Title 23 public string Title
23 { 24 {
24 get => _title; 25 get => _title;
Line 39... Line 40...
39 _body = value; 40 _body = value;
40 OnPropertyChanged(); 41 OnPropertyChanged();
41 } 42 }
42 } 43 }
Line -... Line 44...
-   44  
-   45 public float ContentHeight
-   46 {
-   47 get => _contentHeight;
-   48 set
-   49 {
-   50 if (value == _contentHeight) return;
-   51 _contentHeight = value;
-   52 OnPropertyChanged();
-   53 }
-   54 }
43   55  
44 public bool EnableChime 56 public bool EnableChime
45 { 57 {
46 get => _enableChime; 58 get => _enableChime;
47 set 59 set