Placeholders show up again

This commit is contained in:
Sasha Koshka 2023-01-18 01:20:04 -05:00
parent 2bf2baf69e
commit 3ef13955be

View File

@ -198,7 +198,7 @@ func (element *TextBox) draw () {
innerBounds.Max.X -= theme.Padding() innerBounds.Max.X -= theme.Padding()
innerBounds.Max.Y -= theme.Padding() innerBounds.Max.Y -= theme.Padding()
if element.text == nil && !element.selected { if len(element.text) == 0 && !element.selected {
// draw placeholder // draw placeholder
textBounds := element.placeholderDrawer.LayoutBounds() textBounds := element.placeholderDrawer.LayoutBounds()
offset := image.Point { offset := image.Point {