HamBook – Diff between revs 13 and 14

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 13 Rev 14
Line 117... Line 117...
117 { 117 {
118 await _bandScan.Stop(); 118 await _bandScan.Stop();
119 _bandScan = null; 119 _bandScan = null;
120 } 120 }
Line -... Line 121...
-   121  
-   122 // Save configuration on quit.
-   123 await SaveConfiguration();
121   124  
122 Close(); 125 Close();
Line 123... Line 126...
123 } 126 }
124   127  
Line 599... Line 602...
599 return; 602 return;
600 } 603 }
Line 601... Line 604...
601   604  
602 _spectrogramForm.Dispose(); 605 _spectrogramForm.Dispose();
-   606 _spectrogramForm = null;
-   607  
-   608 // Commit the configuration.
-   609 _changedConfigurationContinuation.Schedule(TimeSpan.FromSeconds(1),
-   610 async () =>
-   611 {
-   612 await SaveConfiguration();
603 _spectrogramForm = null; 613 }, _cancellationToken);
604 } 614 }
605 } 615 }