graphics/SFC_Objects.py
changeset 1 e9d01d824086
parent 0 b622defdfd98
child 2 93bc4c2cf376
--- a/graphics/SFC_Objects.py	Wed Jan 31 16:31:39 2007 +0100
+++ b/graphics/SFC_Objects.py	Thu Feb 01 18:09:34 2007 +0100
@@ -1277,8 +1277,8 @@
             if "duration" in action:
                 dc.DrawText(action["qualifier"], self.Pos.x + (colsize[0] - text_width) / 2,
                     self.Pos.y + i * SFC_ACTION_MIN_SIZE[1] + SFC_ACTION_MIN_SIZE[1] / 2 - text_height)
-                text_width, text_height = dc.GetTextExtent("T#%s"%action["duration"])
-                dc.DrawText("T#%s"%action["duration"], self.Pos.x + (colsize[0] - text_width) / 2,
+                text_width, text_height = dc.GetTextExtent(action["duration"])
+                dc.DrawText(action["duration"], self.Pos.x + (colsize[0] - text_width) / 2,
                     self.Pos.y + i * SFC_ACTION_MIN_SIZE[1] + SFC_ACTION_MIN_SIZE[1] / 2)
             else:
                 dc.DrawText(action["qualifier"], self.Pos.x + (colsize[0] - text_width) / 2,