summaryrefslogtreecommitdiff
path: root/gtk/gtkcalendar.c
diff options
context:
space:
mode:
authorTimm Bäder <mail@baedert.org>2017-03-18 07:06:35 +0100
committerTimm Bäder <mail@baedert.org>2017-03-18 07:07:06 +0100
commit53f0c2626ef8aa95f8223c75c36474e3a047cd2e (patch)
treef73ffab8b8413c530e4c451dfd5504ea5b5fc7a2 /gtk/gtkcalendar.c
parent56e809be9c0a7e7a81134d4f115435e2daec3f74 (diff)
downloadgtk+-53f0c2626ef8aa95f8223c75c36474e3a047cd2e.tar.gz
calendar: Fix else branch indentations
Diffstat (limited to 'gtk/gtkcalendar.c')
-rw-r--r--gtk/gtkcalendar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkcalendar.c b/gtk/gtkcalendar.c
index 5c37e6f8b0..dd2d78f202 100644
--- a/gtk/gtkcalendar.c
+++ b/gtk/gtkcalendar.c
@@ -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);