Skip to content

Commit a1459b6

Browse files
authored
Merge pull request #315 from endlessm/push-ntlryqsuuxot
Fix "Type::" double colon in block tooltip
2 parents da44907 + 6a13a71 commit a1459b6

File tree

1 file changed

+1
-1
lines changed
  • addons/block_code/ui/blocks/block

1 file changed

+1
-1
lines changed

addons/block_code/ui/blocks/block/block.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ func _get_tooltip(at_position: Vector2) -> String:
221221
if definition.variant_type == Variant.Type.TYPE_NIL:
222222
return description_tx
223223

224-
return "{description}\n\n{type_field}: [b]{type}[/b]".format({"description": description_tx, "type_field": tr("Type:"), "type": type_string(definition.variant_type)})
224+
return "{description}\n\n{type_field} [b]{type}[/b]".format({"description": description_tx, "type_field": tr("Type:"), "type": type_string(definition.variant_type)})
225225

226226

227227
func _make_custom_tooltip(for_text) -> Control:

0 commit comments

Comments
 (0)