コード例 #1
0
ファイル: behavior.py プロジェクト: JimmXinu/calibre
 def reset_confirmation_dialogs(self, *args):
     for key in dynamic.keys():
         if key.endswith('_again') and dynamic[key] is False:
             dynamic[key] = True
     gprefs['questions_to_auto_skip'] = []
     info_dialog(self, _('Done'),
             _('Confirmation dialogs have all been reset'), show=True)
コード例 #2
0
ファイル: behavior.py プロジェクト: yandong2023/calibre
 def reset_confirmation_dialogs(self, *args):
     for key in dynamic.keys():
         if key.endswith('_again') and dynamic[key] is False:
             dynamic[key] = True
     gprefs['questions_to_auto_skip'] = []
     info_dialog(self, _('Done'),
             _('Confirmation dialogs have all been reset'), show=True)
コード例 #3
0
 def reset_dialogs(self):
     for key in dynamic.keys():
         if key.startswith('find_duplicates_') and key.endswith('_again') \
                                               and dynamic[key] is False:
             dynamic[key] = True
     info_dialog(self, _('Done'),
             _('Confirmation dialogs have all been reset'), show=True)
コード例 #4
0
ファイル: config.py プロジェクト: iqeqsun/EpubSplit
 def reset_dialogs(self):
     for key in dynamic.keys():
         if key.startswith('epubsplit_') and key.endswith('_again') \
                                               and dynamic[key] is False:
             dynamic[key] = True
     info_dialog(self, _('Done'),
                 _('Confirmation dialogs have all been reset'),
                 show=True,
                 show_copy_button=False)
コード例 #5
0
ファイル: config.py プロジェクト: JimmXinu/EpubMerge
 def reset_dialogs(self):
     for key in dynamic.keys():
         if key.startswith('epubmerge_') and key.endswith('_again') \
                                               and dynamic[key] is False:
             dynamic[key] = True
     info_dialog(self, _('Done'),
                 _('Confirmation dialogs have all been reset'),
                 show=True,
                 show_copy_button=False)