summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-04-20 20:07:45 +0200
committerGitHub <noreply@github.com>2021-04-20 20:07:45 +0200
commit1616055b3b374aac24d4607d6686a87dfa41a535 (patch)
treeb8c83d8080995e8f4f8ce5415981163029708e00
parent8a8dd9cef4c4f09d0ddafe5ba17b1d1efb1e325e (diff)
parent564ddcde7724310a8ac50e374633e57af1e945cf (diff)
Merge pull request #47879 from SilverCreekEntertainment/add-uwp-export-project-notifier
Fix EditorExportPlugin _export_begin and _export_end functions not being called when exporting UWP
-rw-r--r--platform/uwp/export/export.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/platform/uwp/export/export.cpp b/platform/uwp/export/export.cpp
index 2a0bc78440..800a728033 100644
--- a/platform/uwp/export/export.cpp
+++ b/platform/uwp/export/export.cpp
@@ -1177,6 +1177,8 @@ public:
}
virtual Error export_project(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags = 0) override {
+ ExportNotifier notifier(*this, p_preset, p_debug, p_path, p_flags);
+
String src_appx;
EditorProgress ep("export", "Exporting for UWP", 7, true);