Removed a little bit of debug output.
This commit is contained in:
parent
75e99db77e
commit
7531260d8f
2 changed files with 1 additions and 4 deletions
|
@ -60,6 +60,7 @@ Features
|
||||||
* There is basically no good way to do this without moving to Qt5. I might try that myself later, but that's a long-term goal.
|
* There is basically no good way to do this without moving to Qt5. I might try that myself later, but that's a long-term goal.
|
||||||
* Toggle individual tab flash / alert sounds (from the same right-click memo that lets us toggle OOC)
|
* Toggle individual tab flash / alert sounds (from the same right-click memo that lets us toggle OOC)
|
||||||
* Make it possible to test quirk things and such without connecting? This'd be hard to separate out, but useful.
|
* Make it possible to test quirk things and such without connecting? This'd be hard to separate out, but useful.
|
||||||
|
* Right-click Time entry field to see those used? (Replace left/right buttons?)
|
||||||
|
|
||||||
Debugging
|
Debugging
|
||||||
----
|
----
|
||||||
|
|
4
convo.py
4
convo.py
|
@ -673,8 +673,6 @@ class PesterConvo(QtGui.QFrame):
|
||||||
memoblink = pesterblink = self.mainwindow.config.blink()
|
memoblink = pesterblink = self.mainwindow.config.blink()
|
||||||
memoblink &= self.mainwindow.config.MBLINK
|
memoblink &= self.mainwindow.config.MBLINK
|
||||||
pesterblink &= self.mainwindow.config.PBLINK
|
pesterblink &= self.mainwindow.config.PBLINK
|
||||||
print "{!s}.notifications_muted: {!s}".format(self,
|
|
||||||
self.notifications_muted)
|
|
||||||
mutednots = self.notifications_muted
|
mutednots = self.notifications_muted
|
||||||
mtsrc = self
|
mtsrc = self
|
||||||
if parent:
|
if parent:
|
||||||
|
@ -688,8 +686,6 @@ class PesterConvo(QtGui.QFrame):
|
||||||
(parent and parent.convoHasFocus(title))):
|
(parent and parent.convoHasFocus(title))):
|
||||||
# ok if it has a tabconvo parent, send that the notify.
|
# ok if it has a tabconvo parent, send that the notify.
|
||||||
if parent:
|
if parent:
|
||||||
print "{!s}.notifications_muted: {!s}".format(mtsrc,
|
|
||||||
mutednots)
|
|
||||||
if not mutednots:
|
if not mutednots:
|
||||||
# Stop the icon from highlighting
|
# Stop the icon from highlighting
|
||||||
parent.notifyNewMessage(title)
|
parent.notifyNewMessage(title)
|
||||||
|
|
Loading…
Reference in a new issue