calendar: Fix else branch indentations

This commit is contained in:
Timm Bäder 2017-03-18 07:06:35 +01:00
parent 56e809be9c
commit 53f0c2626e

View File

@ -2234,13 +2234,13 @@ calendar_snapshot_header (GtkCalendar *calendar,
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_snapshot_render_layout (snapshot, context, x, y, layout);
g_object_unref (layout);