Supplement to commit 81953e4...

- epgview: Fix colors in progress bar


Origin commit data
------------------
Branch: ni/coolstream
Commit: d4740238dd
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2013-04-06 (Sat, 06 Apr 2013)

Origin message was:
------------------
* Supplement to commit 81953e4...

- epgview: Fix colors in progress bar


------------------
This commit was generated by Migit
This commit is contained in:
Michael Liebmann
2013-04-06 15:42:05 +02:00
parent 293b756560
commit 9c0586ffb7

View File

@@ -643,6 +643,7 @@ int CEpgData::show(const t_channel_id channel_id, uint64_t a_id, time_t* a_start
int pbx = sx + 10 + widthl + 10 + ((ox-104-widthr-widthl-10-10-20)>>1); int pbx = sx + 10 + widthl + 10 + ((ox-104-widthr-widthl-10-10-20)>>1);
CProgressBar pb(pbx, sy+oy-height, 104, height-6); CProgressBar pb(pbx, sy+oy-height, 104, height-6);
pb.setBlink(); pb.setBlink();
pb.setRgb(0, 100, 70);
pb.setValues(epg_done, 100); pb.setValues(epg_done, 100);
pb.paint(false); pb.paint(false);
} }
@@ -688,6 +689,7 @@ int CEpgData::show(const t_channel_id channel_id, uint64_t a_id, time_t* a_start
int pbx = sx + 10 + widthl + 10 + ((ox-104-widthr-widthl-10-10-20)>>1); int pbx = sx + 10 + widthl + 10 + ((ox-104-widthr-widthl-10-10-20)>>1);
CProgressBar pb(pbx, sy+oy-height, 104, height-6); CProgressBar pb(pbx, sy+oy-height, 104, height-6);
pb.setBlink(); pb.setBlink();
pb.setRgb(0, 100, 70);
pb.setValues(epg_done, 100); pb.setValues(epg_done, 100);
pb.paint(false); pb.paint(false);
} }