diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2024-01-15 14:29:52 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2024-01-15 14:54:13 +0100 |
commit | 4a11d4842034ef7286f178eb0d061c91db9c97c2 (patch) | |
tree | 8245b918a3bac8a6ba80f9034a9fcbb1e1597fdf /editor/editor_log.h | |
parent | 9e65c5c0f4f8944d17fc7f5b05682206e9348d81 (diff) | |
download | redot-engine-4a11d4842034ef7286f178eb0d061c91db9c97c2.tar.gz |
Handle clickable `[url]` tags in `print_rich()` editor output log
Since this uses `OS.shell_open()`, this allows the use of any standard URL
including `file://` paths, `mailto:`, custom protocols set up by the user, etc.
Diffstat (limited to 'editor/editor_log.h')
-rw-r--r-- | editor/editor_log.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/editor_log.h b/editor/editor_log.h index 07f3a25c3e..03a0a071c6 100644 --- a/editor/editor_log.h +++ b/editor/editor_log.h @@ -157,6 +157,7 @@ private: Thread::ID current; //void _dragged(const Point2& p_ofs); + void _meta_clicked(const String &p_meta); void _clear_request(); void _copy_request(); static void _undo_redo_cbk(void *p_self, const String &p_name); |