[A] Added default cell options

This commit is contained in:
seleznevae
2018-02-27 20:59:02 +03:00
parent 66578f379c
commit 46758ee032
3 changed files with 44 additions and 11 deletions

View File

@@ -718,3 +718,8 @@ int ft_set_cell_option(FTABLE *table, unsigned row, unsigned col, uint32_t optio
}
return set_cell_option(table->options->cell_options, row, col, option, value);
}
int ft_set_default_cell_option(uint32_t option, int value)
{
return set_default_cell_option(option, value);
}