diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-05-08 10:46:53 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-12-29 09:42:00 +0200 |
commit | cebefc9f5d26bc5207e6ba399e67a82f76216f13 (patch) | |
tree | 696e1c5919fc7c2f376c3c903a6d2a2294729f6c /editor/editor_run_native.cpp | |
parent | a75493091823020d858fabadbfa5994da0d658cb (diff) | |
download | redot-engine-cebefc9f5d26bc5207e6ba399e67a82f76216f13.tar.gz |
[Export] Add one-click deploy over SSH for the desktop exports.
Add one-click deploy over SSH for the desktop exports.
Add ZIP export option for Linux and Windows.
Change export plugin icons to SVG format.
Diffstat (limited to 'editor/editor_run_native.cpp')
-rw-r--r-- | editor/editor_run_native.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/editor/editor_run_native.cpp b/editor/editor_run_native.cpp index 47a9661bcb..2fe594531c 100644 --- a/editor/editor_run_native.cpp +++ b/editor/editor_run_native.cpp @@ -154,7 +154,9 @@ Error EditorRunNative::run_native(int p_idx, int p_platform) { Error err = eep->run(preset, p_idx, flags); result_dialog_log->clear(); if (eep->fill_log_messages(result_dialog_log, err)) { - result_dialog->popup_centered_ratio(0.5); + if (eep->get_worst_message_type() >= EditorExportPlatform::EXPORT_MESSAGE_ERROR) { + result_dialog->popup_centered_ratio(0.5); + } } return err; } |