From 9c0586ffb7fa0e59898e885f9c7b2a6834d5864c Mon Sep 17 00:00:00 2001 From: Michael Liebmann Date: Sat, 6 Apr 2013 15:42:05 +0200 Subject: [PATCH] Supplement to commit 81953e4... - epgview: Fix colors in progress bar Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/d4740238ddbbf8a3805bce3f0348d1257e2fbc42 Author: Michael Liebmann 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 --- src/gui/epgview.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gui/epgview.cpp b/src/gui/epgview.cpp index 719533328..e28244fa0 100644 --- a/src/gui/epgview.cpp +++ b/src/gui/epgview.cpp @@ -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); CProgressBar pb(pbx, sy+oy-height, 104, height-6); pb.setBlink(); + pb.setRgb(0, 100, 70); pb.setValues(epg_done, 100); 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); CProgressBar pb(pbx, sy+oy-height, 104, height-6); pb.setBlink(); + pb.setRgb(0, 100, 70); pb.setValues(epg_done, 100); pb.paint(false); }