summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2019-07-05 08:00:40 +0200
committerGitHub <noreply@github.com>2019-07-05 08:00:40 +0200
commit259a3fb1e99ecd5a4c79d4083e6db19496b8556d (patch)
treeaefd9364d1a11db7c3c0f874aed004c5f3ed301e /core
parented96e4a20fbcb63f03fb19e4b92636dcc12d17cb (diff)
parent10cfd87414f1e39a31c2ac13ead61cbca9353afd (diff)
Merge pull request #29744 from GodotExplorer/gdscript-completion-icons
Show icons for code completion options
Diffstat (limited to 'core')
-rw-r--r--core/script_language.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/script_language.h b/core/script_language.h
index cb103646ed..87f103bb33 100644
--- a/core/script_language.h
+++ b/core/script_language.h
@@ -216,6 +216,7 @@ struct ScriptCodeCompletionOption {
Kind kind;
String display;
String insert_text;
+ RES icon;
ScriptCodeCompletionOption() {
kind = KIND_PLAIN_TEXT;