diff options
| author | Guilherme Felipe <guilhermefelipecgs@gmail.com> | 2015-05-05 15:34:40 -0300 |
|---|---|---|
| committer | Guilherme Felipe <guilhermefelipecgs@gmail.com> | 2015-05-05 15:34:40 -0300 |
| commit | 734d539a7dbef428402fb232ca7623a215ac3f64 (patch) | |
| tree | 2573383fcc00a147721e109c1b447b34c593e0fa | |
| parent | bc3c14a76b988a50e65328a932316c2e630a7ae6 (diff) | |
Change the order of the filter
| -rw-r--r-- | core/globals.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/globals.cpp b/core/globals.cpp index b128914de5..23d8c16ace 100644 --- a/core/globals.cpp +++ b/core/globals.cpp @@ -1381,7 +1381,7 @@ Globals::Globals() { set("application/name","" ); set("application/main_scene",""); - custom_prop_info["application/main_scene"]=PropertyInfo(Variant::STRING,"application/main_scene",PROPERTY_HINT_FILE,"xml,res,scn,xscn"); + custom_prop_info["application/main_scene"]=PropertyInfo(Variant::STRING,"application/main_scene",PROPERTY_HINT_FILE,"scn,res,xscn,xml"); set("application/disable_stdout",false); set("application/use_shared_user_dir",true); |