Merge pull request #12173 from homer666/visualscript-variable-list-equals-space
VisualScript: Add space after "=" sign in variable list
This commit is contained in:
commit
3efb584ff5
1 changed files with 1 additions and 1 deletions
|
@ -809,7 +809,7 @@ void VisualScriptEditor::_update_members() {
|
|||
|
||||
ti->set_text(0, E->get());
|
||||
Variant var = script->get_variable_default_value(E->get());
|
||||
ti->set_suffix(0, "=" + String(var));
|
||||
ti->set_suffix(0, "= " + String(var));
|
||||
ti->set_icon(0, type_icons[script->get_variable_info(E->get()).type]);
|
||||
|
||||
ti->set_selectable(0, true);
|
||||
|
|
Loading…
Reference in a new issue