diff --git a/TODO.mkdn b/TODO.mkdn index 2d0b3b1..ee5de75 100644 --- a/TODO.mkdn +++ b/TODO.mkdn @@ -23,6 +23,7 @@ Features * Spectation notices (Idea: lexicalNuance) (probly WONTFIX) * "Pester" menu option to just pester a handle * Auto-login Nickserv +* Make toast notifications only on certain chums Bugs ---- diff --git a/pesterchum.py b/pesterchum.py index ca559bf..6a0fce0 100644 --- a/pesterchum.py +++ b/pesterchum.py @@ -197,7 +197,7 @@ class chumArea(RightClickTree): def __init__(self, chums, parent=None): QtGui.QTreeWidget.__init__(self, parent) self.notify = False - QtCore.QTimer.singleShot(5000, self, QtCore.SLOT('beginNotify()')) + QtCore.QTimer.singleShot(30000, self, QtCore.SLOT('beginNotify()')) self.mainwindow = parent theme = self.mainwindow.theme self.chums = chums diff --git a/themes/trollian/style.js b/themes/trollian/style.js index f9c4a31..6e01fd5 100644 --- a/themes/trollian/style.js +++ b/themes/trollian/style.js @@ -354,13 +354,13 @@ { "width": 210, "height": 100, - "style": "background: white;", + "style": "background: rgb(255,38,18);", "icon": { "signin": "$path/../enamel/ecstatic2.gif", "signout": "$path/../enamel/discontent2.gif", - "style": "border: 2px solid black; border-width: 2px 0px 0px 2px;" }, + "style": "border: 0px;" }, "title": { "minimumheight": 50, - "style": "border: 2px solid black; border-width: 2px 2px 0px 0px; padding: 5px; font-weight:bold;" + "style": "border: 0px; padding: 5px; font-weight: bold; color: white;" }, - "content": { "style": "background: black; color: white; padding: 5px;" } + "content": { "style": "background: rgb(190, 19, 4); color: black; padding: 5px;" } } }