Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/svgcard.py
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@member.fsf.org>2009-01-22 20:52:32 (GMT)
committer Aleksey Lim <alsroot@member.fsf.org>2009-01-22 20:52:32 (GMT)
commit7a6ea32a02bec001495e6fc8f7ceb4265bb9d6e9 (patch)
treef6a9b2cef2f5e5b59c2844bbf181ed4275e26991 /svgcard.py
parentc59a060c9a804d33c98177321e27d082a06cbe05 (diff)
make cardtable screen-resolution independent
Diffstat (limited to 'svgcard.py')
-rw-r--r--svgcard.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/svgcard.py b/svgcard.py
index d0ac594..a3ccf9d 100644
--- a/svgcard.py
+++ b/svgcard.py
@@ -88,7 +88,7 @@ class SvgCard(gtk.DrawingArea):
self.window.draw_pixbuf(None, pixbuf, 0, 0, 0, 0)
if self.show_jpeg:
self.window.draw_pixbuf(None, self.jpeg, 0, 0,
- theme.CARD_PAD, theme.CARD_PAD)
+ theme.SVG_PAD, theme.SVG_PAD)
if self.show_text:
widget.window.draw_layout(gc, x=6, y=self.current_layout_position, layout=self.current_layout, foreground=gtk.gdk.color_parse(self.current_text_color))
return False