From 48abe73fe238fc4bec337fbc4d82f59ea96830f1 Mon Sep 17 00:00:00 2001 From: Swarnim Arun Date: Mon, 13 Aug 2018 19:24:35 +0530 Subject: [PATCH] Fix for resource save dialog call to make sure the resource save opens in the current folder when using right click to do it. --- editor/filesystem_dock.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/filesystem_dock.cpp b/editor/filesystem_dock.cpp index 37f86cc9124..2b89752c089 100644 --- a/editor/filesystem_dock.cpp +++ b/editor/filesystem_dock.cpp @@ -1408,7 +1408,7 @@ void FileSystemDock::_resource_created() const { RES current_res = RES(r); - editor->save_resource_as(current_res); + editor->save_resource_as(current_res, path); } void FileSystemDock::_go_to_file_list() {