summaryrefslogtreecommitdiffstats
path: root/editor/surface_upgrade_tool.h
diff options
context:
space:
mode:
authorYuri Sizov <yuris@humnom.net>2023-11-22 16:15:02 +0100
committerYuri Sizov <yuris@humnom.net>2023-11-22 19:03:14 +0100
commit10b70e2498a2a9d4d12cf422f7ee0386c6b6a46c (patch)
tree5db6c58c2bf59e99b0e618594d6a582851d4983b /editor/surface_upgrade_tool.h
parenta34814b0b6767d1e894e0d7ef8fa7076b4eb20ce (diff)
downloadredot-engine-10b70e2498a2a9d4d12cf422f7ee0386c6b6a46c.tar.gz
Rework the surface upgrade tool to inform users without blocking
This removes the immediate confirmation dialog and insteads prints the message to the editor log (and it also appears as a toast). The immediate dialog is a devil's plaything, and it cannot be used in this scenario (if it can be used anywhere at all). The condition that triggers the SUT can happen during any attempt by the rendering server to read a mesh. This means it will conflict with a number of editor processes, like loading, importing, preview generation, export, CLI mode, etc. So while this is less on the nose as far as informing users goes, it's also our best option to use the log and the toaster.
Diffstat (limited to 'editor/surface_upgrade_tool.h')
-rw-r--r--editor/surface_upgrade_tool.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/editor/surface_upgrade_tool.h b/editor/surface_upgrade_tool.h
index ae2b90decd..59745250e4 100644
--- a/editor/surface_upgrade_tool.h
+++ b/editor/surface_upgrade_tool.h
@@ -40,12 +40,14 @@ class SurfaceUpgradeTool : public Object {
static SurfaceUpgradeTool *singleton;
- bool show_requested = false;
- bool popped_up = false;
Mutex mutex;
+ bool show_requested = false;
+ bool updating = false;
+
static void _try_show_popup();
void _show_popup();
+
void _add_files(EditorFileSystemDirectory *p_dir, Vector<String> &r_reimport_paths, Vector<String> &r_resave_paths);
protected:
@@ -72,6 +74,8 @@ protected:
void _notification(int p_what);
public:
+ void popup_on_demand();
+
SurfaceUpgradeDialog();
};