Skip to content

Commit

Permalink
Hide label of text input in Text As Image (#2561)
Browse files Browse the repository at this point in the history
  • Loading branch information
RunDevelopment authored Feb 8, 2024
1 parent 3c235d3 commit b13a874
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class TextAsImagePosition(Enum):
description="Create an image using any text.",
icon="MdTextFields",
inputs=[
TextInput("Text", multiline=True),
TextInput("Text", multiline=True, label_style="hidden"),
BoolInput("Bold", default=False),
BoolInput("Italic", default=False),
ColorInput(channels=[3], default=Color.bgr((0, 0, 0))),
Expand Down

0 comments on commit b13a874

Please sign in to comment.