diff options
| author | nokoe <nokoe@mailbox.org> | 2025-10-14 14:08:41 +0200 |
|---|---|---|
| committer | nokoe <nokoe@mailbox.org> | 2025-10-14 14:09:52 +0200 |
| commit | a0a4a4bb14e3407b3e2b9a3df57c489588c92b5a (patch) | |
| tree | 5b43be77be9524cfabf65610388c65308d03fd37 /client/system | |
| parent | 1ce9bf90d31b1ddc77f2d1fd5707ee316748aaca (diff) | |
| download | hurrycurry-a0a4a4bb14e3407b3e2b9a3df57c489588c92b5a.tar hurrycurry-a0a4a4bb14e3407b3e2b9a3df57c489588c92b5a.tar.bz2 hurrycurry-a0a4a4bb14e3407b3e2b9a3df57c489588c92b5a.tar.zst | |
fix hurrycurry-editor chooser type in editor
Diffstat (limited to 'client/system')
| -rw-r--r-- | client/system/settings.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/system/settings.gd b/client/system/settings.gd index 2e4c09b9..1a4a6a80 100644 --- a/client/system/settings.gd +++ b/client/system/settings.gd @@ -67,7 +67,7 @@ static func get_root(): ])), SettingsCategory.new("server", [ PathSetting.new("binary_path", "", FileDialog.FileMode.FILE_MODE_OPEN_FILE), - PathSetting.new("editor_binary_path", "", FileDialog.FileMode.FILE_MODE_OPEN_DIR), + PathSetting.new("editor_binary_path", "", FileDialog.FileMode.FILE_MODE_OPEN_FILE), PathSetting.new("data_path", "", FileDialog.FileMode.FILE_MODE_OPEN_DIR), TextSetting.new("name", "A Hurry Curry! Server"), ToggleSetting.new("allow_external_connections", true), |