Place the note about leaving calibre running for scheduling in the schedule box

This commit is contained in:
Kovid Goyal 2022-07-17 22:00:34 +05:30
parent 8660e20976
commit a9afd0a1c7
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -295,6 +295,8 @@ class SchedulerDialog(QDialog):
self.last_downloaded = la = QLabel(f)
la.setWordWrap(True)
vf.addWidget(la)
self.rla = la = QLabel(_("For the scheduling to work, you must leave calibre running."))
vf.addWidget(la)
self.account = acc = QGroupBox(self.tab)
acc.setTitle(_("&Account"))
vt.addWidget(acc)
@ -310,8 +312,6 @@ class SchedulerDialog(QDialog):
self.show_password = spw = QCheckBox(_("&Show password"), self.account)
spw.stateChanged[int].connect(self.set_pw_echo_mode)
g.addWidget(spw, 2, 0, 1, 2)
self.rla = la = QLabel(_("For the scheduling to work, you must leave calibre running."))
vt.addWidget(la)
for b, c in iteritems(self.SCHEDULE_TYPES):
b = getattr(self, b)
b.toggled.connect(self.schedule_type_selected)