mirror of
https://projects.vdr-developer.org/git/vdr-plugin-skindesigner.git
synced 2023-10-19 17:58:31 +02:00
fixed bug that wrong channel was shown in header of whatson if entering from whatsonnow
This commit is contained in:
parent
84756db208
commit
a443d53e85
4
HISTORY
4
HISTORY
@ -112,4 +112,6 @@ Version 0.1.0
|
||||
|
||||
- fixed display of color buttons in detailed views
|
||||
- fixed possible Nullpointer access in displaymenurootview
|
||||
- added currentschedule viewelement in displaymenumain
|
||||
- added currentschedule viewelement in displaymenumain
|
||||
- fixed bug that wrong channel was shown in header of whatson
|
||||
if entering from whatsonnow
|
@ -52,7 +52,7 @@ private:
|
||||
public:
|
||||
cDisplayMenuSchedulesView(cTemplateView *tmplView, eMenuCategory menuCat, bool menuInit);
|
||||
virtual ~cDisplayMenuSchedulesView();
|
||||
void SetChannel(const cChannel *channel) { if (!this->channel) this->channel = channel; };
|
||||
void SetChannel(const cChannel *channel) { if (channel) this->channel = channel; };
|
||||
const cChannel *GetChannel(void) { return channel; };
|
||||
bool DrawHeader(void);
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user