diff options
author | Poommetee Ketson <poommetee@protonmail.com> | 2018-02-22 15:17:49 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-22 15:17:49 +0700 |
commit | fef49cadcbcc186f9616368f0a725dfb2c372b48 (patch) | |
tree | 7ab02e623aad6bad605cb187c7351740b639e4c9 | |
parent | 742d01b8887d5b4bdaf2e6d9931220cedff3a6a9 (diff) | |
parent | db2a1544c01e7f52a0a95b58509419c6de949e5d (diff) |
Merge pull request #16915 from sudoio/master
Insert proper copy icon to debugger
-rw-r--r-- | editor/script_editor_debugger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/script_editor_debugger.cpp b/editor/script_editor_debugger.cpp index 57beb9523f..da3a4ee919 100644 --- a/editor/script_editor_debugger.cpp +++ b/editor/script_editor_debugger.cpp @@ -948,7 +948,7 @@ void ScriptEditorDebugger::_notification(int p_what) { inspector->edit(variables); - copy->set_icon(get_icon("Duplicate", "EditorIcons")); + copy->set_icon(get_icon("ActionCopy", "EditorIcons")); step->set_icon(get_icon("DebugStep", "EditorIcons")); next->set_icon(get_icon("DebugNext", "EditorIcons")); |