Make player stats rows not expand = prettier.

This commit is contained in:
Ray 2009-01-26 20:02:01 -05:00
parent 3261f28506
commit 64f1f17d7c

View File

@ -67,7 +67,7 @@ class GuiPlayerStats (threading.Thread):
for t in titles:
l = gtk.Label(titles[col])
l.show()
self.stats_table.attach(l, col, col+1, row, row+1)
self.stats_table.attach(l, col, col+1, row, row+1, yoptions=gtk.SHRINK)
col +=1
for row in range(rows-1):
@ -87,7 +87,7 @@ class GuiPlayerStats (threading.Thread):
else:
l.set_alignment(xalign=1.0, yalign=0.5)
eb.add(l)
self.stats_table.attach(eb, col, col+1, row+1, row+2)
self.stats_table.attach(eb, col, col+1, row+1, row+2, yoptions=gtk.SHRINK)
l.show()
eb.show()
self.fdb.db.commit()