aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Updater
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-10-17 15:20:02 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-10-17 15:20:02 +0300
commit043e92664e7ecae291c5152721e9c294f8cf5216 (patch)
tree2abcc38bd8b61c65a732dd7bedc5191b3cd840db /Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Updater
parent997eee30e7bf9d9a91d8c3c65e2d3206e83a7b2d (diff)
downloadTango-043e92664e7ecae291c5152721e9c294f8cf5216.tar.gz
Tango-043e92664e7ecae291c5152721e9c294f8cf5216.zip
Added support for demo mode on PPC.
Fixed issue with jobs list on PPC.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Updater')
-rw-r--r--Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Updater/MainWindow.xaml2
-rw-r--r--Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Updater/MainWindow.xaml.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Updater/MainWindow.xaml b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Updater/MainWindow.xaml
index f78749fe2..8733d4e0c 100644
--- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Updater/MainWindow.xaml
+++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Updater/MainWindow.xaml
@@ -28,7 +28,7 @@
<Grid Grid.Row="1">
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
<Image Source="/Images/update.png" Width="100" />
- <TextBlock x:Name="txtStatus" Margin="0 20 0 0" FontSize="14" Text="Updating Machine Studio..." HorizontalAlignment="Center"></TextBlock>
+ <TextBlock x:Name="txtStatus" Margin="0 20 0 0" FontSize="12" Text="Updating Machine Studio..." HorizontalAlignment="Center"></TextBlock>
<ProgressBar x:Name="prog" Margin="0 30 0 0" Width="500" Height="10" Maximum="100" Value="0" Foreground="#0288D1"></ProgressBar>
</StackPanel>
</Grid>
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Updater/MainWindow.xaml.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Updater/MainWindow.xaml.cs
index 759f5d8d1..c636e3125 100644
--- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Updater/MainWindow.xaml.cs
+++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Updater/MainWindow.xaml.cs
@@ -113,7 +113,7 @@ namespace Tango.MachineStudio.Updater
prog.Value = progress++;
DoEvents();
- Thread.Sleep(30);
+ Thread.Sleep(10);
}
catch (Exception ex)
{