Skip to content

Commit

Permalink
[VideoMode] - only show delay if force resolution enabled
Browse files Browse the repository at this point in the history
(cherry picked from commit f2fc2a0)
  • Loading branch information
Tony Whalley authored and Ev0-BH committed Feb 6, 2024
1 parent a601725 commit 2ef8d52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/Screens/VideoMode.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def createSetup(self):
self.list.append(getConfigListEntry(_("Show 2160p 24fps as"), config.av.fixres_2160p24, _("This option allows you to choose how to display 2160p 24Hz on your TV. (as not all TVs support these resolutions)")))
self.list.append(getConfigListEntry(_("Show 2160p 25fps as"), config.av.fixres_2160p25, _("This option allows you to choose how to display 2160p 25Hz on your TV. (as not all TVs support these resolutions)")))
self.list.append(getConfigListEntry(_("Show 2160p 30fps as"), config.av.fixres_2160p30, _("This option allows you to choose how to display 2160p 30Hz on your TV. (as not all TVs support these resolutions)")))
if config.av.fixres.value in ("all", "hd") or config.av.videorate[config.av.videomode[config.av.videoport.value].value].value == "multi":
if config.av.fixres.value in ("all", "hd") and config.av.videorate[config.av.videomode[config.av.videoport.value].value].value == "multi":
self.list.append(getConfigListEntry(_("Delay time"), config.av.fixres_delay, _("Set the time before checking video source for resolution/refresh rate infomation.")))
if level >= 1:
if SystemInfo["CanDownmixAC3"]:
Expand Down

0 comments on commit 2ef8d52

Please sign in to comment.