Skip to content

Commit f72bf5e

Browse files
committed
fix webview
1 parent 5eea393 commit f72bf5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

figeno/gui/gui_webview.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def browse():
2727
start_dir = last_dir
2828
if len(data["path"])>0 and os.path.exists(os.path.dirname(data["path"])):
2929
start_dir = os.path.dirname(data["path"])
30-
t = window.create_file_dialog(webview.OPEN_DIALOG, allow_multiple=False ,directory=start_dir, title="Select file")
30+
t = window.create_file_dialog(webview.OPEN_DIALOG, allow_multiple=False ,directory=start_dir)
3131
if t is None: t=""
3232
if not isinstance(t,str): t=t[0]
3333
if len(t)>0: last_dir= os.path.dirname(t)

0 commit comments

Comments
 (0)