fdsa
This commit is contained in:
parent
10d0ede71d
commit
a13ed72f07
4 changed files with 7 additions and 2 deletions
BIN
convo.pyc
BIN
convo.pyc
Binary file not shown.
|
@ -1 +1 @@
|
|||
{"tabs": true, "soundon": true, "chums": ["marineAquist", "unknownTraveler", "tentacleTherapist", "macruralAlchemist", "vaginalEngineer", "mechanicalSpectacle", "carcinoGeneticist", "schlagzeugGator", "gamblingGenocider", "gardenGnostic", "superGhost", "centaursTesticle", "arachnidsGrip", "grimAuxiliatrix", "remoteBloodbath", "nitroZealist", "greenZephyr", "arsenicCatnip", "adiosToreador", "cuttlefishCuller", "rageInducer", "gallowsCalibrator", "caligulasAquarium", "terminallyCapricious", "illuminatedWax", "aquaMarinist", "maxiumumFatness", "elegantDiversion", "moirailBunp", "uroborosUnbound", "androidTechnician", "midnightSparrow", "apocalypseArisen", "acapellaWaterfall", "anguillaNuntia", "oilslickOrchid"], "defaultprofile": "testProfile", "block": []}
|
||||
{"tabs": true, "soundon": true, "chums": ["marineAquist", "unknownTraveler", "tentacleTherapist", "macruralAlchemist", "vaginalEngineer", "mechanicalSpectacle", "carcinoGeneticist", "schlagzeugGator", "gamblingGenocider", "gardenGnostic", "superGhost", "centaursTesticle", "arachnidsGrip", "grimAuxiliatrix", "remoteBloodbath", "nitroZealist", "greenZephyr", "arsenicCatnip", "adiosToreador", "cuttlefishCuller", "rageInducer", "gallowsCalibrator", "caligulasAquarium", "terminallyCapricious", "illuminatedWax", "aquaMarinist", "maxiumumFatness", "elegantDiversion", "moirailBunp", "uroborosUnbound", "androidTechnician", "midnightSparrow", "apocalypseArisen", "acapellaWaterfall", "anguillaNuntia", "oilslickOrchid"], "block": []}
|
|
@ -965,12 +965,17 @@ class PesterWindow(MovingWindow):
|
|||
self.mychumcolor.setStyleSheet("background: %s" % (self.profile().colorhtml()))
|
||||
if self.theme.has_key("main/mychumhandle/currentMood"):
|
||||
moodicon = self.profile().mood.icon(theme)
|
||||
if hasattr(self, 'currentMoodIcon') and self.currentMoodIcon:
|
||||
self.currentMoodIcon.hide()
|
||||
self.currentMoodIcon = None
|
||||
self.currentMoodIcon = QtGui.QLabel(self)
|
||||
self.currentMoodIcon.setPixmap(moodicon.pixmap(moodicon.realsize()))
|
||||
self.currentMoodIcon.move(*theme["main/mychumhandle/currentMood"])
|
||||
self.currentMoodIcon.show()
|
||||
else:
|
||||
print "no mood :("
|
||||
if hasattr(self, 'currentMoodIcon') and self.currentMoodIcon:
|
||||
print "hiding..."
|
||||
self.currentMoodIcon.hide()
|
||||
self.currentMoodIcon = None
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
{"color": "#ff00ff", "theme": "pesterchum", "quirks": [], "handle": "ghostDunk"}
|
||||
{"color": "#ff00ff", "theme": "trollian", "quirks": [], "handle": "ghostDunk"}
|
Loading…
Reference in a new issue