Skip to content

Commit

Permalink
[pip]
Browse files Browse the repository at this point in the history
* disable skin reload
  • Loading branch information
jbleyel committed Nov 26, 2024
1 parent 8239d11 commit 48a4455
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/python/Screens/Dish.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@ def __init__(self, session):
self.turn_time = self.total_time = None
self.close_timeout = self.moving_timeout = self.cur_polar = 0
self.__state = self.STATE_HIDDEN
self.noSkinReload = True

self.onShow.append(self.__onShow)
self.onHide.append(self.__onHide)
Expand Down
2 changes: 2 additions & 0 deletions lib/python/Screens/PictureInPicture.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ def PipPigMode(value):


class PictureInPictureZapping(Screen):
noSkinReload = True
skin = """<screen name="PictureInPictureZapping" flags="wfNoBorder" position="50,50" size="90,26" title="PiPZap" zPosition="-1">
<eLabel text="PiP-Zap" position="0,0" size="90,26" foregroundColor="#00ff66" font="Regular;26" />
</screen>"""
Expand All @@ -59,6 +60,7 @@ def __init__(self, session):
self.dishpipActive = session.instantiateDialog(Dishpip)
self.currentService = None
self.currentServiceReference = None
self.noSkinReload = True

self.choicelist = [("standard", _("Standard"))]
if BoxInfo.getItem("VideoDestinationConfigurable"):
Expand Down

0 comments on commit 48a4455

Please sign in to comment.