mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 09:16:35 +08:00
Fix code completion drawing under other gui elements.
Raises the z-index of the Script editor when the completion is shown. fixes #1257 fixes #6690
This commit is contained in:
parent
1f9e16119f
commit
6dfa405eac
@ -4197,12 +4197,15 @@ void TextEdit::_confirm_completion() {
|
||||
|
||||
|
||||
void TextEdit::_cancel_code_hint() {
|
||||
|
||||
VisualServer::get_singleton()->canvas_item_set_z(get_canvas_item(), 0);
|
||||
completion_hint="";
|
||||
update();
|
||||
}
|
||||
|
||||
void TextEdit::_cancel_completion() {
|
||||
|
||||
VisualServer::get_singleton()->canvas_item_set_z(get_canvas_item(), 0);
|
||||
if (!completion_active)
|
||||
return;
|
||||
|
||||
@ -4382,6 +4385,7 @@ void TextEdit::query_code_comple() {
|
||||
|
||||
void TextEdit::set_code_hint(const String& p_hint) {
|
||||
|
||||
VisualServer::get_singleton()->canvas_item_set_z(get_canvas_item(), 1);
|
||||
completion_hint=p_hint;
|
||||
completion_hint_offset=-0xFFFF;
|
||||
update();
|
||||
@ -4389,7 +4393,7 @@ void TextEdit::set_code_hint(const String& p_hint) {
|
||||
|
||||
void TextEdit::code_complete(const Vector<String> &p_strings) {
|
||||
|
||||
|
||||
VisualServer::get_singleton()->canvas_item_set_z(get_canvas_item(), 1);
|
||||
completion_strings=p_strings;
|
||||
completion_active=true;
|
||||
completion_current="";
|
||||
|
Loading…
Reference in New Issue
Block a user