# HG changeset patch
# User Andrey Skvortsov <andrej.skvortzov@gmail.com>
# Date 1482750114 -10800
# Node ID af9b0ccb418ed3bb6512d8ad235af8ac61ef55a2
# Parent  f8f05f84983189ceeb7a452f2d8ea2a930474ac5
replace '-' with '.' in resource tab and transition/action SFC code


This makes tab names consistent with the way the same information is shown in variable panel.

diff -r f8f05f849831 -r af9b0ccb418e editors/EditorPanel.py
--- a/editors/EditorPanel.py	Mon Dec 26 13:49:38 2016 +0300
+++ b/editors/EditorPanel.py	Mon Dec 26 14:01:54 2016 +0300
@@ -79,7 +79,7 @@
         self.ParentWindow.EditProjectElement(None, self.GetTagName(), True)
     
     def GetTitle(self):
-        return "-".join(self.TagName.split("::")[1:])
+        return ".".join(self.TagName.split("::")[1:])
     
     def GetIcon(self):
         return self.Icon