mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-28 23:28:54 +01:00
Merge branch 'master' of https://github.com/JimmXinu/calibre
This commit is contained in:
commit
aefc7fa751
1 changed files with 6 additions and 0 deletions
|
|
@ -861,6 +861,12 @@ def confirm_quit(self):
|
|||
|
||||
if not question_dialog(self, _('Active jobs'), msg):
|
||||
return False
|
||||
|
||||
if self.proceed_question.questions:
|
||||
msg = _('There are library updates waiting. Are you sure you want to quit?')
|
||||
if not question_dialog(self, _('Library Updates Waiting'), msg):
|
||||
return False
|
||||
|
||||
from calibre.db.delete_service import has_jobs
|
||||
if has_jobs():
|
||||
msg = _('Some deleted books are still being moved to the Recycle '
|
||||
|
|
|
|||
Loading…
Reference in a new issue