Beep Quoting You should always double beep if Beep is on to distinguish it.

This commit is contained in:
ccd0 2016-02-27 11:11:28 -08:00
parent 3bd7e3609b
commit 27ce9fa417

View File

@ -328,8 +328,11 @@ ThreadUpdater =
Main.callbackNodes Post, posts
if d.hidden
ThreadUpdater.playBeep() if Conf['Beep'] and Unread.posts?.size > 0 and unreadCount is 0
ThreadUpdater.playBeep() if Conf['Beep Quoting You'] and Unread.postsQuotingYou?.size > unreadQYCount
if Conf['Beep Quoting You'] and Unread.postsQuotingYou?.size > unreadQYCount
ThreadUpdater.playBeep()
ThreadUpdater.playBeep() if Conf['Beep']
else if Conf['Beep'] and Unread.posts?.size > 0 and unreadCount is 0
ThreadUpdater.playBeep()
scroll = Conf['Auto Scroll'] and ThreadUpdater.scrollBG() and
ThreadUpdater.root.getBoundingClientRect().bottom - doc.clientHeight < 25