aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-09-17 12:01:45 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-09-17 12:01:45 +0300
commit02263b893b1366b084cf1b2358920dc195cfac01 (patch)
tree61ac58e43180343b3a428b2a328f4800d7233863 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels
parentde2b8a223b4fa65e085fbc0995e521ddba4e9335 (diff)
downloadTango-02263b893b1366b084cf1b2358920dc195cfac01.tar.gz
Tango-02263b893b1366b084cf1b2358920dc195cfac01.zip
Implemented Segments Names Editing.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels/MainViewVM.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels/MainViewVM.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels/MainViewVM.cs
index e04b1539a..bf6a6ecbc 100644
--- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels/MainViewVM.cs
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/ViewModels/MainViewVM.cs
@@ -1810,7 +1810,7 @@ namespace Tango.MachineStudio.Developer.ViewModels
LogManager.LogFormat("Adding new segment to job {0}...", ActiveJob.Name);
Segment seg = new Segment();
seg.Job = ActiveJob;
- seg.Name = "Untitled Segment";
+ seg.Name = "SEGMENT";
seg.Length = 10;
if (ActiveJob.Segments.Count > 0)