Skip to content

Commit

Permalink
[CCcamInfo] Fix selection bar alignment
Browse files Browse the repository at this point in the history
Thx MX10
  • Loading branch information
Ev0-BH committed Nov 27, 2021
1 parent b51fd12 commit bdc422e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/python/Screens/CCcamInfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,8 @@ def CCcamListEntry(name, idx):
png = "/usr/share/enigma2/skin_default/buttons/key_%s.png" % str(idx)
if screenwidth and screenwidth == 1920:
if fileExists(png):
res.append(MultiContentEntryPixmapAlphaBlend(pos=(10, 3), size=(67, 48), png=LoadPixmap(png)))
res.append(MultiContentEntryText(pos=(90, 7), size=(900, 50), font=1, text=name))
res.append(MultiContentEntryPixmapAlphaBlend(pos=(10, 7), size=(67, 48), png=LoadPixmap(png)))
res.append(MultiContentEntryText(pos=(90, 0), size=(900, 40), font=1, text=name))
else:
if fileExists(png):
res.append(MultiContentEntryPixmapAlphaBlend(pos=(0, 0), size=(35, 25), png=LoadPixmap(png)))
Expand Down

0 comments on commit bdc422e

Please sign in to comment.