diff options
author | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2018-06-24 16:09:19 +0200 |
---|---|---|
committer | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2018-06-24 16:09:19 +0200 |
commit | 9f49ddbd7ce4969c713d850a7b17123b17f3288f (patch) | |
tree | 80983c2043d2e795b551db7e2d7f8cf874c5bc6c /displayreplay.c | |
parent | 5a8c1819d963bc78c317b98dd2e77be68bad1549 (diff) | |
download | skin-flatplus-9f49ddbd7ce4969c713d850a7b17123b17f3288f.tar.gz skin-flatplus-9f49ddbd7ce4969c713d850a7b17123b17f3288f.tar.bz2 |
support for MaxPixmapSize
Diffstat (limited to 'displayreplay.c')
-rw-r--r-- | displayreplay.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/displayreplay.c b/displayreplay.c index 42c88f8d..a9e67269 100644 --- a/displayreplay.c +++ b/displayreplay.c @@ -22,23 +22,23 @@ cFlatDisplayReplay::cFlatDisplayReplay(bool ModeOnly) { int TVSWidth = osdWidth - 40 - Config.decorBorderChannelEPGSize*2; int TVSHeight = osdHeight - topBarHeight - labelHeight - 40 - Config.decorBorderChannelEPGSize*2; - chanEpgImagesPixmap = osd->CreatePixmap(2, cRect(TVSLeft, TVSTop, TVSWidth, TVSHeight)); + chanEpgImagesPixmap = CreatePixmap(2, cRect(TVSLeft, TVSTop, TVSWidth, TVSHeight)); chanEpgImagesPixmap->Fill( clrTransparent ); - labelPixmap = osd->CreatePixmap(1, cRect(Config.decorBorderReplaySize, osdHeight - labelHeight - Config.decorBorderReplaySize, + labelPixmap = CreatePixmap(1, cRect(Config.decorBorderReplaySize, osdHeight - labelHeight - Config.decorBorderReplaySize, osdWidth - Config.decorBorderReplaySize*2, labelHeight)); - iconsPixmap = osd->CreatePixmap(2, cRect(Config.decorBorderReplaySize, osdHeight - labelHeight - Config.decorBorderReplaySize, + iconsPixmap = CreatePixmap(2, cRect(Config.decorBorderReplaySize, osdHeight - labelHeight - Config.decorBorderReplaySize, osdWidth - Config.decorBorderReplaySize*2, labelHeight)); ProgressBarCreate(Config.decorBorderReplaySize, osdHeight - labelHeight - Config.decorProgressReplaySize - Config.decorBorderReplaySize - marginItem, osdWidth - Config.decorBorderReplaySize*2, Config.decorProgressReplaySize, marginItem, 0, Config.decorProgressReplayFg, Config.decorProgressReplayBarFg, Config.decorProgressReplayBg, Config.decorProgressReplayType); - labelJump = osd->CreatePixmap(1, cRect(Config.decorBorderReplaySize, + labelJump = CreatePixmap(1, cRect(Config.decorBorderReplaySize, osdHeight - labelHeight - Config.decorProgressReplaySize*2 - marginItem*3 - fontHeight - Config.decorBorderReplaySize*2, osdWidth - Config.decorBorderReplaySize*2, fontHeight)); - dimmPixmap = osd->CreatePixmap(MAXPIXMAPLAYERS-1, cRect(0, 0, osdWidth, osdHeight)); + dimmPixmap = CreatePixmap(MAXPIXMAPLAYERS-1, cRect(0, 0, osdWidth, osdHeight)); labelPixmap->Fill(Theme.Color(clrReplayBg)); labelJump->Fill(clrTransparent); |