Skip to content

Commit

Permalink
Merge pull request #85150 from KoBeWi/savasavas
Browse files Browse the repository at this point in the history
Add Save As... option to EditorResourcePicker
  • Loading branch information
akien-mga committed Nov 21, 2023
2 parents b5779cc + 2c72558 commit 0e33036
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions editor/editor_resource_picker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ void EditorResourcePicker::_update_menu_items() {
}

edit_menu->add_icon_item(get_editor_theme_icon(SNAME("Save")), TTR("Save"), OBJ_MENU_SAVE);
edit_menu->add_icon_item(get_editor_theme_icon(SNAME("Save")), TTR("Save As..."), OBJ_MENU_SAVE_AS);
}

if (edited_resource->get_path().is_resource_file()) {
Expand Down Expand Up @@ -400,6 +401,13 @@ void EditorResourcePicker::_edit_menu_cbk(int p_which) {
EditorNode::get_singleton()->save_resource(edited_resource);
} break;

case OBJ_MENU_SAVE_AS: {
if (edited_resource.is_null()) {
return;
}
EditorNode::get_singleton()->save_resource_as(edited_resource);
} break;

case OBJ_MENU_COPY: {
EditorSettings::get_singleton()->set_resource_clipboard(edited_resource);
} break;
Expand Down
1 change: 1 addition & 0 deletions editor/editor_resource_picker.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ class EditorResourcePicker : public HBoxContainer {
OBJ_MENU_MAKE_UNIQUE,
OBJ_MENU_MAKE_UNIQUE_RECURSIVE,
OBJ_MENU_SAVE,
OBJ_MENU_SAVE_AS,
OBJ_MENU_COPY,
OBJ_MENU_PASTE,
OBJ_MENU_SHOW_IN_FILE_SYSTEM,
Expand Down

0 comments on commit 0e33036

Please sign in to comment.