mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
document: struct format_attr -> struct text_style_format
This commit is contained in:
parent
e133941206
commit
070d335796
@ -48,7 +48,7 @@ struct css_property {
|
||||
CSS_DISP_BLOCK,
|
||||
} display;
|
||||
struct {
|
||||
enum format_attr add, rem;
|
||||
enum text_style_format add, rem;
|
||||
} font_attribute;
|
||||
enum format_align text_align;
|
||||
/* TODO:
|
||||
|
@ -21,7 +21,7 @@ struct uri;
|
||||
* files - there's lack of any well defined interface and it's all randomly
|
||||
* mixed up :/. */
|
||||
|
||||
enum format_attr {
|
||||
enum text_style_format {
|
||||
AT_BOLD = 1,
|
||||
AT_ITALIC = 2,
|
||||
AT_UNDERLINE = 4,
|
||||
@ -31,7 +31,7 @@ enum format_attr {
|
||||
};
|
||||
|
||||
struct text_style {
|
||||
enum format_attr attr;
|
||||
enum text_style_format attr;
|
||||
color_T fg;
|
||||
color_T bg;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user