Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@member.fsf.org>2009-01-21 17:58:56 (GMT)
committer Aleksey Lim <alsroot@member.fsf.org>2009-01-21 17:58:56 (GMT)
commit3e387afbaa62a2130975064f9e25603d1ccf2d13 (patch)
tree92362c869cd5e49bbed00efe8d3517fb9f3cdb59
parent718427207218a4666eb3820b4e535eade3de854a (diff)
polish prev commit
-rw-r--r--createcardpanel.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/createcardpanel.py b/createcardpanel.py
index 620d888..bb06e16 100644
--- a/createcardpanel.py
+++ b/createcardpanel.py
@@ -115,11 +115,11 @@ class CreateCardPanel(gtk.EventBox):
if self.equal_pairs:
self.table.remove(self.cardeditor1)
self.table.remove(self.cardeditor2)
- self.table.attach(self.cardeditor1, 0, 4, 0, 1, gtk.SHRINK|gtk.FILL, gtk.SHRINK, 200, 30)
+ self.table.attach(self.cardeditor1, 0, 2, 0, 1, yoptions=gtk.SHRINK)
else:
self.table.remove(self.cardeditor1)
- self.table.attach(self.cardeditor1, 0, 2, 0, 1, gtk.SHRINK|gtk.FILL, gtk.SHRINK, 10, 30)
- self.table.attach(self.cardeditor2, 2, 4, 0, 1, gtk.SHRINK|gtk.FILL, gtk.SHRINK, 10, 30)
+ self.table.attach(self.cardeditor1, 0, 1, 0, 1, yoptions=gtk.SHRINK)
+ self.table.attach(self.cardeditor2, 1, 2, 0, 1, yoptions=gtk.SHRINK)
def clean(self, widget):
self.cardeditor1.clean()