Merge pull request #811 from BitBangersCode/alternate_title_fix

Only alternate title when not focused
This commit is contained in:
Julian Lam
2014-01-19 14:25:15 -08:00

View File

@@ -407,7 +407,7 @@ var socket,
return;
}
if (title.length > 0) {
if (title.length > 0 && !app.isFocused) {
titleObj.titles[1] = title;
if (titleObj.interval) {
clearInterval(titleObj.interval);