| 299 void ui_textstyle_enable_color(UiTextStyle *style, UiBool enable) { |
299 void ui_textstyle_enable_color(UiTextStyle *style, UiBool enable) { |
| 300 style->fg_set = enable; |
300 style->fg_set = enable; |
| 301 } |
301 } |
| 302 |
302 |
| 303 |
303 |
| 304 /* ---------------------------- UiTextStyle ---------------------------- */ |
304 /* ---------------------------- UiCellValue ---------------------------- */ |
| 305 |
305 |
| 306 UiBool ui_cell_value_is_string(UiCellValue *value) { |
306 UiBool ui_cell_value_is_string(UiCellValue *value) { |
| 307 return value->type == UI_STRING_EDITABLE; |
307 return value->type == UI_STRING_EDITABLE; |
| 308 } |
308 } |
| 309 |
309 |