- temporary fix for comboboxes not finding the the value in the items when setting themselves with a value by defaulting to the first item in the list
This commit is contained in:
12
Bookmark.py
12
Bookmark.py
@@ -287,12 +287,12 @@ class BookmarkManager(QtWidgets.QWidget):
|
||||
date = date.replace(' ', '_')
|
||||
|
||||
filter__ = "Text File (*.TXT);;All Files (*.*)"
|
||||
filename, _f = FCFileSaveDialog.get_saved_filename(caption=_("Export Bookmarks"),
|
||||
directory='{l_save}/{n}_{date}'.format(
|
||||
l_save=str(self.app.get_last_save_folder()),
|
||||
n=_("Bookmarks"),
|
||||
date=date),
|
||||
ext_filter=filter__)
|
||||
filename, _f = FCFileSaveDialog.get_saved_filename(
|
||||
caption=_("Export Bookmarks"),
|
||||
directory='{l_save}/{n}_{date}'.format(l_save=str(self.app.get_last_save_folder()),
|
||||
n=_("Bookmarks"),
|
||||
date=date),
|
||||
ext_filter=filter__)
|
||||
|
||||
filename = str(filename)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user