[gtk+] calendar: Fix else branch indentations



commit 53f0c2626ef8aa95f8223c75c36474e3a047cd2e
Author: Timm Bäder <mail baedert org>
Date:   Sat Mar 18 07:06:35 2017 +0100

    calendar: Fix else branch indentations

 gtk/gtkcalendar.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gtk/gtkcalendar.c b/gtk/gtkcalendar.c
index 5c37e6f..dd2d78f 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);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]