diff options
author | Yuri Roubinsky <chaosus89@gmail.com> | 2021-12-12 09:21:00 +0300 |
---|---|---|
committer | Yuri Roubinsky <chaosus89@gmail.com> | 2021-12-12 10:39:49 +0300 |
commit | 526390c048f189a5bdec6a6fb045d6e55b2b223f (patch) | |
tree | f3ad771bb55a4de6dfeff832ad886d22ac196a27 /core/object | |
parent | 092a2861277e7df87aec10516d713d0bf4adba79 (diff) |
Fix highlight for completion options match (rebased)
Co-authored-by: Gustav Andersson <gvekan@users.noreply.github.com>
Diffstat (limited to 'core/object')
-rw-r--r-- | core/object/script_language.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/object/script_language.h b/core/object/script_language.h index 8d76cbf479..bd9d3c4fcf 100644 --- a/core/object/script_language.h +++ b/core/object/script_language.h @@ -227,6 +227,7 @@ struct ScriptCodeCompletionOption { Color font_color; RES icon; Variant default_value; + Vector<Pair<int, int>> matches; ScriptCodeCompletionOption() {} |