aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/MainWindow.xaml.cs
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2019-10-07 16:41:45 +0300
committerShlomo Hecht <shlomo@twine-s.com>2019-10-07 16:41:45 +0300
commiteae70d7ebcb1007b407bac2ba27da5a5fef337db (patch)
tree67febce63cc498102a86eb69263508c6c70f0b1f /Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/MainWindow.xaml.cs
parente131de20ac8e179abc42a2dc173cf860d64a3bcd (diff)
parent583d3716e37a9be80c8bb248215f343ed4fcd2d1 (diff)
downloadTango-eae70d7ebcb1007b407bac2ba27da5a5fef337db.tar.gz
Tango-eae70d7ebcb1007b407bac2ba27da5a5fef337db.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/Tango/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/MainWindow.xaml.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/MainWindow.xaml.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/MainWindow.xaml.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/MainWindow.xaml.cs
index d0eec65e2..915deb484 100644
--- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/MainWindow.xaml.cs
+++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/MainWindow.xaml.cs
@@ -105,19 +105,24 @@ namespace Tango.MachineStudio.UI
switch (ratio)
{
case 16d / 9d:
- grid.Height = 1000;
+ grid.Height = 1145;
+ grid.Width = 2000;
break;
case 16d / 10d:
grid.Height = 1145;
+ grid.Width = 1920;
break;
case 4d / 3d:
grid.Height = 1280;
+ grid.Width = 1920;
break;
case 1366d / 768d:
grid.Height = 1100;
+ grid.Width = 1920;
break;
default:
grid.Height = 1145;
+ grid.Width = 1920;
break;
}
}