calendar: Fix else branch indentations

This commit is contained in:
Timm Bäder 2017-03-18 07:06:35 +01:00 committed by Daniel Boles
parent b73e6ffbd8
commit 61c85ba89d

View File

@ -2257,13 +2257,13 @@ calendar_paint_header (GtkCalendar *calendar, cairo_t *cr)
x = header_width - (3 + max_month_width
- (max_month_width - logical_rect.width)/2);
else
x = 3 + (max_month_width - logical_rect.width) / 2;
x = 3 + (max_month_width - logical_rect.width) / 2;
else
if (year_left)
x = header_width - (3 + priv->arrow_width + max_month_width
- (max_month_width - logical_rect.width)/2);
else
x = 3 + priv->arrow_width + (max_month_width - logical_rect.width)/2;
x = 3 + priv->arrow_width + (max_month_width - logical_rect.width)/2;
gtk_render_layout (context, cr, x, y, layout);
g_object_unref (layout);