Merge pull request #5385 from volzhs/autosave-android

Fix autosave when run on remote device
This commit is contained in:
Juan Linietsky 2016-07-10 14:34:30 -03:00 committed by GitHub
commit 8d9b73171e
2 changed files with 11 additions and 8 deletions

View file

@ -2675,11 +2675,16 @@ void EditorNode::_menu_option_confirm(int p_option,bool p_confirmed) {
} break;
case RUN_PLAY_NATIVE: {
_menu_option_confirm(RUN_STOP,true);
emit_signal("play_pressed");
editor_run.run_native_notify();
bool autosave = EDITOR_DEF("run/auto_save_before_running",true);
if (autosave) {
_menu_option_confirm(FILE_SAVE_SCENE, false);
}
if (run_native->is_deploy_debug_remote_enabled()){
_menu_option_confirm(RUN_STOP,true);
emit_signal("play_pressed");
editor_run.run_native_notify();
}
} break;
case RUN_SCENE_SETTINGS: {