Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Aguiar <alanjas@hotmail.com>2012-10-21 09:11:18 (GMT)
committer Alan Aguiar <alanjas@hotmail.com>2012-10-21 09:11:18 (GMT)
commitb80cc7b63678cc76de1026ed80adb39d317de4cc (patch)
treeea06e43c0cf76165562eb181f73bb8cacb5f9506
parenta6161308da868451f2250df8e6b11823953122ff (diff)
fix the classical problem in eventeditorv3
-rw-r--r--timelinelib/wxgui/dialogs/eventeditor.py4
1 files changed, 2 insertions, 2 deletions
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)