Fix proper ordering of project settings properties, also fixes inability to change order of autoloads
This commit is contained in:
parent
110de2ccac
commit
496cb49771
3 changed files with 9 additions and 6 deletions
|
|
@ -930,11 +930,14 @@ void ProjectSettings::_autoload_delete(Object *p_item,int p_column, int p_button
|
|||
|
||||
String swap_name= "autoload/"+swap->get_text(0);
|
||||
|
||||
int order = Globals::get_singleton()->get_order(name);
|
||||
int swap_order = Globals::get_singleton()->get_order(swap_name);
|
||||
|
||||
undo_redo->create_action("Move Autoload");
|
||||
undo_redo->add_do_method(Globals::get_singleton(),"set_order",swap_name,Globals::get_singleton()->get_order(name));
|
||||
undo_redo->add_do_method(Globals::get_singleton(),"set_order",name,Globals::get_singleton()->get_order(swap_name));
|
||||
undo_redo->add_undo_method(Globals::get_singleton(),"set_order",swap_name,Globals::get_singleton()->get_order(swap_name));
|
||||
undo_redo->add_undo_method(Globals::get_singleton(),"set_order",name,Globals::get_singleton()->get_order(name));
|
||||
undo_redo->add_do_method(Globals::get_singleton(),"set_order",swap_name,order);
|
||||
undo_redo->add_do_method(Globals::get_singleton(),"set_order",name,swap_order);
|
||||
undo_redo->add_undo_method(Globals::get_singleton(),"set_order",swap_name,swap_order);
|
||||
undo_redo->add_undo_method(Globals::get_singleton(),"set_order",name,order);
|
||||
undo_redo->add_do_method(this,"_update_autoload");
|
||||
undo_redo->add_undo_method(this,"_update_autoload");
|
||||
undo_redo->add_do_method(this,"_settings_changed");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue