mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-11-29 16:50:13 +01:00
2018-07-16 Fred Gleason <fredg@paravelsystems.com>
* Cleaned up SQL quieries in 'rdairplay/' ensure UTF-8 compatibility.
This commit is contained in:
@@ -143,15 +143,13 @@ void PostCounter::UpdateDisplay()
|
||||
|
||||
if(post_offset_valid) {
|
||||
if(offset<-POST_COUNTER_MARGIN) {
|
||||
state=QString().sprintf("-%s",(const char *)
|
||||
QTime().addMSecs(-offset).toString());
|
||||
state="-"+QTime().addMSecs(-offset).toString();
|
||||
setPalette(post_early_palette);
|
||||
color=POSTPOINT_EARLY_COLOR;
|
||||
}
|
||||
else {
|
||||
if(offset>POST_COUNTER_MARGIN) {
|
||||
state=QString().sprintf("+%s",(const char *)
|
||||
QTime().addMSecs(offset).toString());
|
||||
state="+"+QTime().addMSecs(offset).toString();
|
||||
setPalette(post_late_palette);
|
||||
color=POSTPOINT_LATE_COLOR;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user