Change: Default widget text colour to black.

TC_FROMSTRING really means blue, and we almost never actually use
blue text.
This commit is contained in:
Peter Nelson
2022-09-23 22:47:50 +01:00
committed by Michael Lutz
parent db98cedb7e
commit 296af146fb
2 changed files with 2 additions and 2 deletions

View File

@@ -940,7 +940,7 @@ NWidgetCore::NWidgetCore(WidgetType tp, Colours colour, uint fill_x, uint fill_y
this->widget_data = widget_data;
this->tool_tip = tool_tip;
this->scrollbar_index = -1;
this->text_colour = TC_FROMSTRING;
this->text_colour = TC_BLACK;
this->align = SA_CENTER;
}