diff options
author | Soeren Moch <smoch@web.de> | 2021-02-05 10:12:29 +0100 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2021-02-05 14:09:54 +0100 |
commit | d32e1378256e9f2f83ce3d0f140060f25e182e43 (patch) | |
tree | e63c590a828b36c2dac02a7650c80d8caf30f4d7 /displayreplay.c | |
parent | 63f03388f04bd8e35c891947337dea4b7b6a03d1 (diff) | |
download | skin-nopacity-d32e1378256e9f2f83ce3d0f140060f25e182e43.tar.gz skin-nopacity-d32e1378256e9f2f83ce3d0f140060f25e182e43.tar.bz2 |
Fix control icons in DisplayReplay
SetMode() is called after the first call to Flush() in cSkinDisplayReplay,
so control icons are displayed uninitialized for a short period of time.
Fix this by initializing these icon properly.
Signed-off-by: Soeren Moch <smoch@web.de>
Diffstat (limited to 'displayreplay.c')
-rw-r--r-- | displayreplay.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/displayreplay.c b/displayreplay.c index 4f7f268..1010723 100644 --- a/displayreplay.c +++ b/displayreplay.c @@ -13,6 +13,7 @@ cNopacityDisplayReplay::cNopacityDisplayReplay(cImageCache *imgCache, bool ModeO createOSD(); CreatePixmaps(); DrawBackground(); + LoadControlIcons(); } cNopacityDisplayReplay::~cNopacityDisplayReplay() { |