Skip to content

Commit 73ec718

Browse files
committed
Made a fix so the file dialog uses "*" as the filter in non-Windows
environments to find binaries. The "all files" filter uses "*.*" which the file dialog won't find binaries.
1 parent f94daaf commit 73ec718

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wings_job.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ browse_props() ->
3232
case os:type() of
3333
{win32,_} ->
3434
{extensions,[{".exe","Windows Executable"}]};
35-
_-> {extensions,[]}
35+
_-> {extensions,[{"","Executable"}]}
3636
end]}.
3737

3838
%% Render formats that may be handled

0 commit comments

Comments
 (0)