Skip to content
Snippets Groups Projects
Commit 441b8fbb authored by Pascal Palenda's avatar Pascal Palenda
Browse files

Merge branch 'fix/vaserver_exe_selection_ui' into 'develop'

Improve userfriendlyness of VAServer.exe selection

See merge request !21
parents 7dfb6d80 8046624f
Branches
Tags
1 merge request!21Improve userfriendlyness of VAServer.exe selection
......@@ -204,7 +204,11 @@ def find_server_executable() -> Optional[Path]:
root = tk.Tk()
root.withdraw()
root.attributes("-topmost", 1)
print( # noqa: T201
"NOTE: A window has opened for specifying the path to the 'VAServer.exe'. This should be located in the `bin` subfolder of the respective VA directory."
)
executable_raw = filedialog.askopenfilename(
title="Select VAServer executable",
filetypes=[("VAServer executable", "*.exe")],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment