diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-03-03 10:46:03 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-03-03 11:44:06 +0100 |
commit | 48ed841dd04887a4c59803daab154183a4194457 (patch) | |
tree | 32cf352dcb9defeb228742125ad343e972613973 /editor/filesystem_dock.h | |
parent | da8a0913f481abd4704cd12fb10995c45b62c87d (diff) | |
download | redot-engine-48ed841dd04887a4c59803daab154183a4194457.tar.gz |
Signals: Fix some regressions from #36426
- Fix `callable_mp` bindings to methods which used to have default
arguments passed to `bind_method`. We now have to re-specify them
manually when connecting.
- Re-add `GroupsEditor::update_tree` binding.
- Misc code quality changes along the way.
Diffstat (limited to 'editor/filesystem_dock.h')
-rw-r--r-- | editor/filesystem_dock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/filesystem_dock.h b/editor/filesystem_dock.h index 1969f85e72..00f8cd9d50 100644 --- a/editor/filesystem_dock.h +++ b/editor/filesystem_dock.h @@ -222,7 +222,7 @@ private: void _duplicate_operation_confirm(); void _move_with_overwrite(); bool _check_existing(); - void _move_operation_confirm(const String &p_to_path, bool overwrite = false); + void _move_operation_confirm(const String &p_to_path, bool p_overwrite = false); void _tree_rmb_option(int p_option); void _file_list_rmb_option(int p_option); |