This commit is contained in:
Kovid Goyal 2022-04-25 16:12:44 +05:30
parent db3699ec45
commit e199e38476
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -122,7 +122,7 @@ class MarkBooksAction(InterfaceAction):
m.aboutToShow.connect(self.about_to_show_menu)
ma = partial(self.create_menu_action, m)
self.show_marked_action = a = ma('mark_with_text', _('Mark books with text label'), icon='marked.png')
a.triggered.connect(partial(self.mark_with_text, book_ids = None))
a.triggered.connect(partial(self.mark_with_text, book_ids=None))
global mark_books_with_text
mark_books_with_text = self.mark_with_text
self.show_marked_action = a = ma('show-marked', _('Show marked books'), icon='search.png', shortcut='Shift+Ctrl+M')