diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-04-25 16:04:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-25 16:04:15 +0200 |
commit | bfc727d9709beea73a1486b47eb745749c3ad0d1 (patch) | |
tree | fa8cbf2f8f37c80c3a57f500c92503420d609496 /editor/debugger/script_editor_debugger.cpp | |
parent | 30aeffd0c494fc440636f0699698cd67b8cd26ef (diff) | |
parent | 5626d026d83408c80f32d6eafb404801a5abc41a (diff) |
Merge pull request #60493 from Calinou/editor-add-external-link-icon
Diffstat (limited to 'editor/debugger/script_editor_debugger.cpp')
-rw-r--r-- | editor/debugger/script_editor_debugger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/debugger/script_editor_debugger.cpp b/editor/debugger/script_editor_debugger.cpp index 3a3b35f8a5..98391d286a 100644 --- a/editor/debugger/script_editor_debugger.cpp +++ b/editor/debugger/script_editor_debugger.cpp @@ -1496,7 +1496,7 @@ void ScriptEditorDebugger::_error_tree_item_rmb_selected(const Vector2 &p_pos) { if (error_tree->is_anything_selected()) { item_menu->add_icon_item(get_theme_icon(SNAME("ActionCopy"), SNAME("EditorIcons")), TTR("Copy Error"), ACTION_COPY_ERROR); - item_menu->add_icon_item(get_theme_icon(SNAME("Instance"), SNAME("EditorIcons")), TTR("Open C++ Source on GitHub"), ACTION_OPEN_SOURCE); + item_menu->add_icon_item(get_theme_icon(SNAME("ExternalLink"), SNAME("EditorIcons")), TTR("Open C++ Source on GitHub"), ACTION_OPEN_SOURCE); } if (item_menu->get_item_count() > 0) { |