This commit is contained in:
Kovid Goyal 2019-12-27 21:42:17 +05:30
parent 8c53305a4c
commit 1e5657172f
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -364,7 +364,7 @@ class SchedulerDialog(QDialog):
b.setToolTip(_("Download all scheduled news sources at once"))
b.clicked.connect(self.download_all_clicked)
self.l.addWidget(b, 3, 0, 1, 1)
self.bb = bb = QDialogButtonBox(QDialogButtonBox.Save | QDialogButtonBox.Cancel, self)
self.bb = bb = QDialogButtonBox(QDialogButtonBox.Ok | QDialogButtonBox.Cancel, self)
bb.accepted.connect(self.accept), bb.rejected.connect(self.reject)
self.download_button = b = bb.addButton(_('&Download now'), bb.ActionRole)
b.setIcon(QIcon(I('arrow-down.png'))), b.setVisible(False)