1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Add a menu action to open C++ source on GitHub in the editor debugger

This helps user find back the source code where the error/warning
was emitted from.
This commit is contained in:
Hugo Locurcio
2021-04-18 02:07:05 +02:00
parent 0ee744ff5f
commit 5bc746e60a
2 changed files with 66 additions and 24 deletions

View File

@@ -74,6 +74,11 @@ private:
PROFILER_SCRIPTS_SERVERS
};
enum Actions {
ACTION_COPY_ERROR,
ACTION_OPEN_SOURCE,
};
AcceptDialog *msgdialog;
LineEdit *clicked_ctrl;