[T] Tmp: checking pipeline fail
This commit is contained in:
parent
38cb3db339
commit
0510aca314
@ -20,4 +20,5 @@ main_task:
|
||||
- cp fort.c fort.cpp
|
||||
- c++ -Wall -Wextra -Werror -DFT_CONGIG_HAVE_WCHAR fort.cpp -c -o fort.o
|
||||
- rm fort.o
|
||||
- rm fort.cpp
|
||||
- cd ..
|
@ -2927,7 +2927,8 @@ static fort_status_t set_cell_property_impl(fort_cell_props_t *opt, uint32_t pro
|
||||
if (v == FT_TSTYLE_DEFAULT) {
|
||||
opt->cell_text_style = FT_TSTYLE_DEFAULT;
|
||||
} else {
|
||||
opt->cell_text_style = (enum ft_text_style)(opt->cell_text_style | v);
|
||||
// opt->cell_text_style = (enum ft_text_style)(opt->cell_text_style | v);
|
||||
opt->cell_text_style |= v;
|
||||
}
|
||||
} else if (PROP_IS_SET(property, FT_CPROP_CONT_TEXT_STYLE)) {
|
||||
enum ft_text_style v = (enum ft_text_style)value;
|
||||
|
@ -471,7 +471,8 @@ static fort_status_t set_cell_property_impl(fort_cell_props_t *opt, uint32_t pro
|
||||
if (v == FT_TSTYLE_DEFAULT) {
|
||||
opt->cell_text_style = FT_TSTYLE_DEFAULT;
|
||||
} else {
|
||||
opt->cell_text_style = (enum ft_text_style)(opt->cell_text_style | v);
|
||||
// opt->cell_text_style = (enum ft_text_style)(opt->cell_text_style | v);
|
||||
opt->cell_text_style |= v;
|
||||
}
|
||||
} else if (PROP_IS_SET(property, FT_CPROP_CONT_TEXT_STYLE)) {
|
||||
enum ft_text_style v = (enum ft_text_style)value;
|
||||
|
Loading…
Reference in New Issue
Block a user