mac compat. thing

This commit is contained in:
Stephen Dranger 2011-02-23 15:31:20 -06:00
parent fb6c930566
commit 3430472472

View file

@ -1030,7 +1030,10 @@ class PesterWindow(MovingWindow):
if hasattr(self, 'moods'): if hasattr(self, 'moods'):
self.moods.removeButtons() self.moods.removeButtons()
self.moods = PesterMoodHandler(self, *[PesterMoodButton(self, **d) for d in theme["main/moods"]]) mood_list = theme["main/moods"]
mood_list = [dict([(str(k),v) for (k,v) in d.iteritems()])
for d in mood_list]
self.moods = PesterMoodHandler(self, *[PesterMoodButton(self, **d) for d in mood_list])
self.moods.showButtons() self.moods.showButtons()
# chum # chum
addChumStyle = "QPushButton { %s }" % (theme["main/addchum/style"]) addChumStyle = "QPushButton { %s }" % (theme["main/addchum/style"])