mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-31 17:31:11 +02:00
movieplayer: Fix display filetime
Origin commit data
------------------
Commit: 7d5cbea37d
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2017-02-05 (Sun, 05 Feb 2017)
This commit is contained in:
@@ -44,6 +44,7 @@ class CTimeOSD : public CComponentsFrmClock
|
||||
CProgressBar timescale;
|
||||
mode m_mode, tmp_mode;
|
||||
bool m_restore;
|
||||
bool mp_time_forced;
|
||||
time_t m_time_show;
|
||||
|
||||
void initTimeString();
|
||||
@@ -65,7 +66,9 @@ class CTimeOSD : public CComponentsFrmClock
|
||||
mode getTmpMode() { return tmp_mode; };
|
||||
void setTmpMode () { tmp_mode = m_mode; };
|
||||
bool getRestore() { return m_restore; };
|
||||
void setRestore() { m_restore = (m_mode != MODE_HIDE); };
|
||||
void setRestore(bool m) { m_restore = m; };
|
||||
void setHeight(const int){}//NOTE: dummy member, height is strictly bound to settings
|
||||
bool getMpTimeForced() { return mp_time_forced; };
|
||||
void setMpTimeForced(bool m) { mp_time_forced = m; };
|
||||
};
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user