jroimartin / gocui

Minimalist Go package aimed at creating Console User Interfaces.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to set two attributes?

kyai opened this issue · comments

commented

such as gocui.ColorBlue and gocui.AttrBold

You can "or" (|) the two so attr = gocui.ColorBlue | gocui.AttrBold should work

commented

@glvr182 thanks!