summaryrefslogtreecommitdiff
path: root/sway/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/config.c')
-rw-r--r--sway/config.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sway/config.c b/sway/config.c
index da4fac84..280900ca 100644
--- a/sway/config.c
+++ b/sway/config.c
@@ -18,16 +18,16 @@ void config_defaults(struct sway_config *config) {
// Flags
config->focus_follows_mouse = true;
config->mouse_warping = true;
- config->reloading = false;
+ config->reloading = false;
}
struct sway_config *read_config(FILE *file, bool is_active) {
struct sway_config *config = malloc(sizeof(struct sway_config));
config_defaults(config);
- if (is_active) {
- config->reloading = true;
- }
+ if (is_active) {
+ config->reloading = true;
+ }
bool success = true;
@@ -61,9 +61,9 @@ _continue:
exit(1);
}
- if (is_active) {
- config->reloading = true;
- }
+ if (is_active) {
+ config->reloading = true;
+ }
return config;
}