From b80cc7b63678cc76de1026ed80adb39d317de4cc Mon Sep 17 00:00:00 2001 From: Alan Aguiar Date: Sun, 21 Oct 2012 09:11:18 +0000 Subject: fix the classical problem in eventeditor --- diff --git a/timelinelib/wxgui/dialogs/eventeditor.py b/timelinelib/wxgui/dialogs/eventeditor.py index d2b2a53..0c6fac1 100644 --- a/timelinelib/wxgui/dialogs/eventeditor.py +++ b/timelinelib/wxgui/dialogs/eventeditor.py @@ -446,8 +446,8 @@ class IconEditor(wx.Panel): self.MAX_SIZE = (128, 128) # Controls self.img_icon = wx.StaticBitmap(self, size=self.MAX_SIZE) - label = _("Images will be scaled to fit inside a %ix%i box.") - description = wx.StaticText(self, label=label % self.MAX_SIZE) + label = _("Images will be scaled to fit inside a 128x128 box.") + description = wx.StaticText(self, label=label) btn_select = wx.Button(self, wx.ID_OPEN) btn_clear = wx.Button(self, wx.ID_CLEAR) self.Bind(wx.EVT_BUTTON, self._btn_select_on_click, btn_select) -- cgit v0.9.1