diff -r b622defdfd98 -r e9d01d824086 graphics/SFC_Objects.py --- 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,