Skip to content

Commit bcac599

Browse files
committed
Allow selecting any file in the editor browser
1 parent 1259ff0 commit bcac599

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

game/addons/tools/Code/CodeEditors/CodeEditorControlWidget.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ void BuildUIImmediate()
135135
var fd = new FileDialog( null );
136136
fd.Title = $"Locate editor executable";
137137
fd.DefaultSuffix = "exe";
138-
fd.SetNameFilter( "Executable Files (*.exe)" );
138+
fd.SetNameFilter( "Executable Files (*.exe);;All Files (*)" );
139139
if ( fd.Execute() )
140140
{
141141
var selectedFile = fd.SelectedFile;

0 commit comments

Comments
 (0)