diff options
| author | Roy Ben-Shabat <Roy.mail.net@gmail.com> | 2022-11-03 11:07:52 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy.mail.net@gmail.com> | 2022-11-03 11:07:52 +0200 |
| commit | 75f815b1e0f42e26f9083eb716f95ae7dec2b690 (patch) | |
| tree | b1fd1bf9a48cc88d977067b3450d198735fa9376 /Software/Visual_Studio/PPC | |
| parent | 60e3fd22b8e89091fa5426a5b4d156de901b1f7c (diff) | |
| download | Tango-75f815b1e0f42e26f9083eb716f95ae7dec2b690.tar.gz Tango-75f815b1e0f42e26f9083eb716f95ae7dec2b690.zip | |
PPC_v1.8.1
Diffstat (limited to 'Software/Visual_Studio/PPC')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.UI/Properties/AssemblyInfo.cs | 2 | ||||
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MainViewVM.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/Properties/AssemblyInfo.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/Properties/AssemblyInfo.cs index abe50222f..5c58b0fbc 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.UI/Properties/AssemblyInfo.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/Properties/AssemblyInfo.cs @@ -8,4 +8,4 @@ using System.Windows; // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Tango PPC Application")] -[assembly: AssemblyVersion("1.8.0.0")] +[assembly: AssemblyVersion("1.8.1.0")] diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MainViewVM.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MainViewVM.cs index 9a302a6ff..e35ed3591 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MainViewVM.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/MainViewVM.cs @@ -75,6 +75,7 @@ namespace Tango.PPC.UI.ViewModels _headTypeNotification.Message = "Machine head type mismatch."; ScreenSaverExitCommand = new RelayCommand(ResetScreenSaverTimer); + _screenSaverTimer = new Timer(TimeSpan.FromMinutes(Settings.ScreenSaverStartDuration).TotalMilliseconds); } /// <summary> @@ -99,7 +100,6 @@ namespace Tango.PPC.UI.ViewModels MachineProvider.MachineConnected += MachineProvider_MachineConnected; - _screenSaverTimer = new Timer(TimeSpan.FromMinutes(Settings.ScreenSaverStartDuration).TotalMilliseconds); _screenSaverTimer.Elapsed += _screenSaverTimer_Elapsed; _screenSaverTimer.Start(); } |
