From e7aef1e23c460b1ec9c5d2e6799a87d9e96a37d4 Mon Sep 17 00:00:00 2001
From: Mikkel Oscar Lyderik <mikkeloscar@gmail.com>
Date: Sun, 27 Dec 2015 13:26:37 +0100
Subject: swaybar: if-else style fixes

---
 swaybar/main.c | 15 +++++----------
 1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/swaybar/main.c b/swaybar/main.c
index c9fc7de7..ac3b9475 100644
--- a/swaybar/main.c
+++ b/swaybar/main.c
@@ -705,8 +705,7 @@ void parse_json(const char *text) {
 
 		if (color) {
 			new->color = parse_color(json_object_get_string(color));
-		}
-		else {
+		} else {
 			new->color = colors.statusline;
 		}
 
@@ -714,8 +713,7 @@ void parse_json(const char *text) {
 			json_type type = json_object_get_type(min_width);
 			if (type == json_type_int) {
 				new->min_width = json_object_get_int(min_width);
-			}
-			else if (type == json_type_string) {
+			} else if (type == json_type_string) {
 				int width, height;
 				get_text_size(window, &width, &height, "%s", json_object_get_string(min_width));
 				new->min_width = width;
@@ -724,8 +722,7 @@ void parse_json(const char *text) {
 
 		if (align) {
 			new->align = strdup(json_object_get_string(align));
-		}
-		else {
+		} else {
 			new->align = strdup("left");
 		}
 
@@ -743,15 +740,13 @@ void parse_json(const char *text) {
 
 		if (separator) {
 			new->separator = json_object_get_int(separator);
-		}
-		else {
+		} else {
 			new->separator = true; // i3bar spec
 		}
 
 		if (separator_block_width) {
 			new->separator_block_width = json_object_get_int(separator_block_width);
-		}
-		else {
+		} else {
 			new->separator_block_width = 9; // i3bar spec
 		}
 
-- 
cgit v1.2.3