diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-02-21 17:44:59 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-02-23 23:48:44 +0100 |
commit | 65429f11a6169d17048e99e0d4bddb2f4eaef6d0 (patch) | |
tree | 0790ce7042521f8cc30264d1162611811f466cd5 /editor/filesystem_dock.cpp | |
parent | 4b6c0560da066135aae9d6512f94770b6db99724 (diff) | |
download | redot-engine-65429f11a6169d17048e99e0d4bddb2f4eaef6d0.tar.gz |
Signals: Make callbacks non-const, callable_mp can't handle it
Diffstat (limited to 'editor/filesystem_dock.cpp')
-rw-r--r-- | editor/filesystem_dock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/filesystem_dock.cpp b/editor/filesystem_dock.cpp index 4172570089..5363d6a1e2 100644 --- a/editor/filesystem_dock.cpp +++ b/editor/filesystem_dock.cpp @@ -1775,7 +1775,7 @@ void FileSystemDock::_file_option(int p_option, const Vector<String> &p_selected } } -void FileSystemDock::_resource_created() const { +void FileSystemDock::_resource_created() { Object *c = new_resource_dialog->instance_selected(); ERR_FAIL_COND(!c); |