Browse Source

Merge pull request #2987 from neikeq/fix_save_empty

Fix 'Save Scene' doing nothing on new scenes
Rémi Verschelde 9 years ago
parent
commit
5b0dcab3e8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/editor/editor_node.cpp

+ 1 - 1
tools/editor/editor_node.cpp

@@ -2042,7 +2042,7 @@ void EditorNode::_menu_option_confirm(int p_option,bool p_confirmed) {
 				return;
 			};
 			// fallthrough to save_as
-		} break;
+		};
 		case FILE_SAVE_AS_SCENE: {
 			
 			Node *scene = editor_data.get_edited_scene_root();