diff --git a/src/streamlit_app.py b/src/streamlit_app.py index 149318e..7be922a 100644 --- a/src/streamlit_app.py +++ b/src/streamlit_app.py @@ -21,7 +21,7 @@ def select_directory_with_dialog(title="Select Directory"): """Use dialog command to select directory in terminal environment""" try: result = subprocess.run( - ['dialog', '--title', title, '--dselect', os.getcwd(), 0, 0], + ['dialog', '--title', title, '--dselect', str(os.getcwd()), '20', '50'], env={'DIALOGRC': '/etc/dialogrc'}, capture_output=True, text=True