mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-07-26 09:28:13 +02:00
Merge branch 'tryphon-rdairplay-fix-point-encoding'
This commit is contained in:
commit
e7d437f497
@ -14492,3 +14492,5 @@
|
|||||||
2014-09-19 Alban Peignier <alban@tryphon.eu>
|
2014-09-19 Alban Peignier <alban@tryphon.eu>
|
||||||
* Fixed 'web/rdxport/carts.cpp' which tried to create associated group
|
* Fixed 'web/rdxport/carts.cpp' which tried to create associated group
|
||||||
during cart creation
|
during cart creation
|
||||||
|
2014-09-20 Alban Peignier <alban@tryphon.eu>
|
||||||
|
* Fixes 'Next Timed Start: [nn:nn:nn]' encoding in RdAirPlay
|
||||||
|
@ -138,9 +138,8 @@ void PostCounter::UpdateDisplay()
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(isEnabled()&&(!post_time.isNull())) {
|
if(isEnabled()&&(!post_time.isNull())) {
|
||||||
str=QString(tr("Next Timed Start"));
|
point= trUtf8("Next Timed Start") + " [" + post_time.toString(post_time_format) + "]";
|
||||||
point=QString().sprintf("%s [%s]",(const char *)str,
|
|
||||||
(const char *)post_time.toString(post_time_format));
|
|
||||||
if(post_offset_valid) {
|
if(post_offset_valid) {
|
||||||
if(offset<-POST_COUNTER_MARGIN) {
|
if(offset<-POST_COUNTER_MARGIN) {
|
||||||
state=QString().sprintf("-%s",(const char *)
|
state=QString().sprintf("-%s",(const char *)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user