mirror of
https://projects.vdr-developer.org/git/vdr-plugin-tvguide.git
synced 2023-10-05 15:01:48 +02:00
Fixed updating current TimeBase
This commit is contained in:
parent
9173d14b10
commit
587fbe1f44
@ -17,13 +17,13 @@ private:
|
|||||||
void decorateTile(int posX, int posY, int tileWidth, int tileHeight);
|
void decorateTile(int posX, int posY, int tileWidth, int tileHeight);
|
||||||
void drawRoundedCorners(int posX, int posY, int width, int height, int radius);
|
void drawRoundedCorners(int posX, int posY, int width, int height, int radius);
|
||||||
cImage *createBackgroundImage(int width, int height, tColor clrBgr, tColor clrBlend);
|
cImage *createBackgroundImage(int width, int height, tColor clrBgr, tColor clrBlend);
|
||||||
void drawCurrentTimeBase(void);
|
|
||||||
public:
|
public:
|
||||||
cTimeLine(cTimeManager *timeManager);
|
cTimeLine(cTimeManager *timeManager);
|
||||||
virtual ~cTimeLine(void);
|
virtual ~cTimeLine(void);
|
||||||
void setTimeline();
|
void setTimeline(void);
|
||||||
void drawDateViewer();
|
void drawDateViewer(void);
|
||||||
void drawTimeline();
|
void drawTimeline(void);
|
||||||
|
void drawCurrentTimeBase(void);
|
||||||
bool drawClock();
|
bool drawClock();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -775,6 +775,7 @@ eOSState cTvGuideOsd::ProcessKey(eKeys Key) {
|
|||||||
default: break;
|
default: break;
|
||||||
}
|
}
|
||||||
if (timeLine->drawClock()) {
|
if (timeLine->drawClock()) {
|
||||||
|
timeLine->drawCurrentTimeBase();
|
||||||
osdManager.flush();
|
osdManager.flush();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user