Minor refactoring to merge if statements.

This commit is contained in:
John McNamara 2021-06-04 23:56:22 +01:00
parent 29c086579f
commit c62807f68f
2 changed files with 14 additions and 18 deletions

View File

@ -466,7 +466,7 @@ _chart_set_default_marker_type(lxw_chart *self, uint8_t type)
/*
* Set an axis number format.
*/
void
STATIC void
_chart_axis_set_default_num_format(lxw_chart_axis *axis, char *num_format)
{
if (!num_format)
@ -4664,17 +4664,15 @@ _chart_write_scatter_chart(lxw_chart *self)
/* Add default scatter chart formatting to the series data unless
* it has already been specified by the user.*/
if (self->type == LXW_CHART_SCATTER) {
if (!series->line) {
lxw_chart_line line = {
0x000000,
LXW_TRUE,
2.25,
LXW_CHART_LINE_DASH_SOLID,
0
};
series->line = _chart_convert_line_args(&line);
}
if (self->type == LXW_CHART_SCATTER && !series->line) {
lxw_chart_line line = {
0x000000,
LXW_TRUE,
2.25,
LXW_CHART_LINE_DASH_SOLID,
0
};
series->line = _chart_convert_line_args(&line);
}
/* Write the c:ser element. */

View File

@ -1869,13 +1869,11 @@ _worksheet_write_sheet_view(lxw_worksheet *self)
LXW_PUSH_ATTRIBUTES_STR("view", "pageLayout");
/* Set the zoom level. */
if (self->zoom != 100) {
if (!self->page_view) {
LXW_PUSH_ATTRIBUTES_INT("zoomScale", self->zoom);
if (self->zoom != 100 && !self->page_view) {
LXW_PUSH_ATTRIBUTES_INT("zoomScale", self->zoom);
if (self->zoom_scale_normal)
LXW_PUSH_ATTRIBUTES_INT("zoomScaleNormal", self->zoom);
}
if (self->zoom_scale_normal)
LXW_PUSH_ATTRIBUTES_INT("zoomScaleNormal", self->zoom);
}
LXW_PUSH_ATTRIBUTES_STR("workbookViewId", "0");