Fix some warnings
This commit is contained in:
parent
85f365bbff
commit
a2b8ef6d51
3 changed files with 6 additions and 6 deletions
|
|
@ -1213,7 +1213,7 @@ void EditorNode::_dialog_action(String p_file) {
|
|||
case FILE_SAVE_SCENE:
|
||||
case FILE_SAVE_AS_SCENE: {
|
||||
|
||||
if (file->get_mode()==FileDialog::MODE_SAVE_FILE) {
|
||||
if (file->get_mode()==EditorFileDialog::MODE_SAVE_FILE) {
|
||||
|
||||
//_save_scene(p_file);
|
||||
_save_scene_with_preview(p_file);
|
||||
|
|
@ -1223,7 +1223,7 @@ void EditorNode::_dialog_action(String p_file) {
|
|||
} break;
|
||||
|
||||
case FILE_SAVE_AND_RUN: {
|
||||
if (file->get_mode()==FileDialog::MODE_SAVE_FILE) {
|
||||
if (file->get_mode()==EditorFileDialog::MODE_SAVE_FILE) {
|
||||
|
||||
//_save_scene(p_file);
|
||||
_save_scene_with_preview(p_file);
|
||||
|
|
@ -1448,7 +1448,7 @@ void EditorNode::_dialog_action(String p_file) {
|
|||
} break;
|
||||
default: { //save scene?
|
||||
|
||||
if (file->get_mode()==FileDialog::MODE_SAVE_FILE) {
|
||||
if (file->get_mode()==EditorFileDialog::MODE_SAVE_FILE) {
|
||||
|
||||
//_save_scene(p_file);
|
||||
_save_scene_with_preview(p_file);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue