Skip to content
Snippets Groups Projects

Improve userfriendlyness of VAServer.exe selection

Merged Philipp Schäfer requested to merge fix/vaserver_exe_selection_ui into develop
+ 4
0
@@ -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")],
Loading