diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2021-02-18 14:53:06 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2021-02-18 14:53:06 +0200 |
| commit | 2d4d1733108689ebf2fc8ae2fa6fd73d649e3ae7 (patch) | |
| tree | 749a6be338b0caae95f6ed54b59361cf5e2c0acb /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner | |
| parent | 0f41178c4f72aef58a1818f9bbaf2dbc9eb0cdf7 (diff) | |
| download | Tango-2d4d1733108689ebf2fc8ae2fa6fd73d649e3ae7.tar.gz Tango-2d4d1733108689ebf2fc8ae2fa6fd73d649e3ae7.zip | |
Added Machine BTSR_INSTALLED
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner')
2 files changed, 8 insertions, 3 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/ViewModels/MainViewVM.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/ViewModels/MainViewVM.cs index de7467e91..bbd36fa3f 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/ViewModels/MainViewVM.cs +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/ViewModels/MainViewVM.cs @@ -1074,8 +1074,10 @@ namespace Tango.MachineStudio.MachineDesigner.ViewModels configuration.IdsPacks.Add(pack); } - IsGen1Machine = false; ActiveMachine.LightInksInstalled = true; + ActiveMachine.BtsrInstalled = true; + + IsGen1Machine = false; _notification.ShowInfo("Machine configuration successfully upgraded to GEN 2."); } diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MachineSettingsView.xaml b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MachineSettingsView.xaml index 2ffe9dfff..c6d285b36 100644 --- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MachineSettingsView.xaml +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineDesigner/Views/MachineSettingsView.xaml @@ -76,8 +76,8 @@ <Rectangle Grid.Column="1" StrokeThickness="1" Stroke="{StaticResource borderBrush}" HorizontalAlignment="Center" Margin="50 50" /> <controls:TableGrid RowHeight="50" Margin="10" Grid.Column="2"> - <TextBlock FontWeight="SemiBold">Auto Login</TextBlock> - <ToggleButton HorizontalAlignment="Left" IsChecked="{Binding ActiveMachine.AutoLogin}"></ToggleButton> + <!--<TextBlock FontWeight="SemiBold">Auto Login</TextBlock> + <ToggleButton HorizontalAlignment="Left" IsChecked="{Binding ActiveMachine.AutoLogin}"></ToggleButton>--> <!--<TextBlock FontWeight="SemiBold">Auto Check For Updates</TextBlock> <ToggleButton HorizontalAlignment="Left" IsChecked="{Binding ActiveMachine.AutoCheckForUpdates}"></ToggleButton>--> @@ -108,6 +108,9 @@ <TextBlock FontWeight="SemiBold">Light Inks Installed</TextBlock> <ToggleButton HorizontalAlignment="Left" IsChecked="{Binding ActiveMachine.LightInksInstalled}"></ToggleButton> + + <TextBlock FontWeight="SemiBold">BTSR Installed</TextBlock> + <ToggleButton HorizontalAlignment="Left" IsChecked="{Binding ActiveMachine.BtsrInstalled}"></ToggleButton> </controls:TableGrid> </Grid> </Border> |
