1
0
mirror of https://github.com/br0xen/termbox-util.git synced 2024-11-22 13:33:15 +00:00

Missed field change

This commit is contained in:
Brian Buller 2015-10-21 11:46:14 -05:00
parent 3b810d6387
commit 5390cfa85a

View File

@ -147,5 +147,5 @@ func (i *InputField) Draw() {
} }
x, y := DrawStringAtPoint(strPt1, i.x+1, i.y+1, i.fg, i.bg) x, y := DrawStringAtPoint(strPt1, i.x+1, i.y+1, i.fg, i.bg)
termbox.SetCell(x, y, cursorRune, i.bg, i.fg) termbox.SetCell(x, y, cursorRune, i.bg, i.fg)
DrawStringAtPoint(str_pt_2, x+1, y, i.fg, i.bg) DrawStringAtPoint(strPt2, x+1, y, i.fg, i.bg)
} }