This commit is contained in:
Kovid Goyal 2019-11-15 11:02:51 +05:30
parent f825c7c4d6
commit d4dc80c9c4
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -267,7 +267,7 @@ class BookmarkManager(QWidget):
def create_new_bookmark(self, pos_data): def create_new_bookmark(self, pos_data):
title, ok = QInputDialog.getText(self, _('Add bookmark'), title, ok = QInputDialog.getText(self, _('Add bookmark'),
_('Enter title for bookmark:')) _('Enter title for bookmark:'), text=_('Bookmark'))
title = unicode_type(title).strip() title = unicode_type(title).strip()
if not ok or not title: if not ok or not title:
return return