Skip to content

Commit

Permalink
[CronTimer]
Browse files Browse the repository at this point in the history
* fix color buttons
  • Loading branch information
jbleyel committed Jan 22, 2025
1 parent b7e732e commit 81a17ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/python/Screens/CronTimer.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,13 +290,13 @@ def info(self):
class CronTimersConfig(ConfigListScreen, Screen):
def __init__(self, session):
Screen.__init__(self, session)
Screen.setTitle(self, _("Cron Manager"))
self.setTitle(_("Cron Manager"))
self.skinName = "Setup"
self.onChangedEntry = []
self.list = []
ConfigListScreen.__init__(self, self.list, session=session, on_change=self.changedEntry)
self["key_red"] = Label(_("Close"))
self["key_green"] = Label(_("Save"))
self["key_red"] = StaticText(_("Close"))
self["key_green"] = StaticText(_("Save"))
self["actions"] = ActionMap(["WizardActions", "ColorActions", "VirtualKeyboardActions", "MenuActions"], {
"red": self.close,
"green": self.checkentry,
Expand Down

0 comments on commit 81a17ae

Please sign in to comment.