Toasts – Diff between revs 25 and 26

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 25 Rev 26
Line 29... Line 29...
29   29  
Line 30... Line 30...
30 public FormAnimator.AnimationDirection AnimationDirection { get; set; } = FormAnimator.AnimationDirection.Up; 30 public FormAnimator.AnimationDirection AnimationDirection { get; set; } = FormAnimator.AnimationDirection.Up;
Line 31... Line 31...
31   31  
-   32 public int AnimationDuration { get; set; } = 500;
-   33  
-   34 public byte[] Chime
-   35 {
-   36 get => _chime;
-   37 set
-   38 {
-   39 if (value is null)
-   40 {
-   41 return;
-   42 }
-   43  
Line 32... Line 44...
32 public int AnimationDuration { get; set; } = 500; 44 _chime = value;
33   45 }
34 public byte[] Chime { get; set; } 46 }
35   47  
Line 145... Line 157...
145   157  
Line 146... Line 158...
146 private readonly int _screenHeight; 158 private readonly int _screenHeight;
Line -... Line 159...
-   159  
-   160 private readonly TaskCompletionSource<object> _showFormTaskCompletionSource;
147   161  
Line 148... Line 162...
148 private readonly TaskCompletionSource<object> _showFormTaskCompletionSource; 162 private byte[] _chime;
Line 149... Line 163...
149   163