mirror of
https://projects.vdr-developer.org/git/vdr-plugin-skindesigner.git
synced 2023-10-19 15:58:31 +00:00
fixed bug that wrong channel was shown in header of whatson if entering from whatsonnow
This commit is contained in:
@@ -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);
|
||||
};
|
||||
|
Reference in New Issue
Block a user