diff options
-rw-r--r-- | textscreen/examples/calculator.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/textscreen/examples/calculator.c b/textscreen/examples/calculator.c index d51d4f9c..7c23252d 100644 --- a/textscreen/examples/calculator.c +++ b/textscreen/examples/calculator.c @@ -118,6 +118,7 @@ void BuildGUI() TXT_AddWidget(window, TXT_NewSeparator(NULL)); input_box = TXT_NewLabel("asdf"); + TXT_SetBGColor(input_box, TXT_COLOR_BLACK); TXT_AddWidget(window, input_box); TXT_AddWidget(window, TXT_NewSeparator(NULL)); TXT_AddWidget(window, TXT_NewLabel("")); |