aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2021-02-17 23:44:54 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2021-02-17 23:44:54 +0200
commit8dbf9aea30b685b56b2eae2aa490440e3d46d725 (patch)
tree1819d07c6d0e7a66b36db66e8344549b4ebc7ad9 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer
parent6f4a841e55653dbcea859afe617d67f6f9432e9a (diff)
parent6013f5eb39578d46f78c6901058272e9ac31db40 (diff)
downloadTango-8dbf9aea30b685b56b2eae2aa490440e3d46d725.tar.gz
Tango-8dbf9aea30b685b56b2eae2aa490440e3d46d725.zip
Merged BTSR branch.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Controls/JobOutlineControl.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Controls/JobOutlineControl.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Controls/JobOutlineControl.cs
index 77ba4040e..86d83ac10 100644
--- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Controls/JobOutlineControl.cs
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Controls/JobOutlineControl.cs
@@ -157,6 +157,20 @@ namespace Tango.MachineStudio.Developer.Controls
_sizeControl.Height += NORMAL_FONT_HEIGHT;
}
}
+ //JobTicket.BtsrParameters
+ if (job.BtsrParameters != null)
+ {
+ _sizeControl.Height += 20;
+ DrawHeaderText(drawingContext, "BTSR PARAMETERS", 17, LevelOffset.level_0);
+ _sizeControl.Height += TITLE_FONT_HEIGHT;
+ _sizeControl.Height += 5.0;
+ basicProps = GetNameValueList(job.BtsrParameters);
+ foreach (var prop in basicProps)
+ {
+ DrawNameValueText(drawingContext, prop, LevelOffset.level_1, PackIconKind.Settings);
+ _sizeControl.Height += NORMAL_FONT_HEIGHT;
+ }
+ }
//JobTicket.Segments
if (job.Segments != null)
{