diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2021-07-09 19:14:54 +0200 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2021-07-12 14:00:56 +0200 |
commit | e3678982b816da0e447aa16d378db497cfd0e211 (patch) | |
tree | e17bd55514be008001178cf420946a6fa10d72ae | |
parent | 9e3359c489b4fe2f28f65fd3f287bbd82473327b (diff) | |
download | skin-nopacity-e3678982b816da0e447aa16d378db497cfd0e211.tar.gz skin-nopacity-e3678982b816da0e447aa16d378db497cfd0e211.tar.bz2 |
Fix displayreplay.c
If cNopacityDisplayReplay::SetTitle() is used, the pixmap pixmapInfo2
was initially not filled.
-rw-r--r-- | displayreplay.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/displayreplay.c b/displayreplay.c index 7072fd3..3dd578c 100644 --- a/displayreplay.c +++ b/displayreplay.c @@ -334,6 +334,7 @@ void cNopacityDisplayReplay::SetRecording(const cRecording *Recording) { void cNopacityDisplayReplay::SetTitle(const char *Title) { pixmapInfo->Fill(clrTransparent); + pixmapInfo2->Fill(clrTransparent); if (!Title) return; int titleLength = fontManager->replayHeader->Width(Title); |