Merge branch 'roster-cq-only' into 'master'

Don't highlight "CQ" rows if filtering by "CQ Only"

See merge request gridtracker.org/gridtracker!156
rich-presence
Sebastian Delmont 2021-12-26 14:35:00 +00:00
commit 797ac6859c
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -41,7 +41,7 @@ Run `npm install` and then `npm start`
Phoenix does not support ARM-based macs, so we have to explicitly tell it to use Intel-based versions of NWJS.
Run `npm install` and then `npm start-x64`
Run `npm install` and then `npm run start-x64`
## ARM-based Raspberry

Wyświetl plik

@ -652,7 +652,7 @@ function processRosterHunting(callRoster, rosterSettings)
callingBg = "#0000FF" + inversionAlpha;
calling = "#FFFF00;text-shadow: 0px 0px 2px #FFFF00";
}
else if (callObj.CQ == true)
else if (callObj.CQ == true && !g_rosterSettings.cqOnly)
{
callingBg = calling + inversionAlpha;
calling = bold;