Init layout before checking config

This commit is contained in:
Mikkel Oscar Lyderik 2016-01-05 19:16:46 +01:00
parent caaff5ac54
commit 2e0ef533f2
1 changed files with 2 additions and 2 deletions

View File

@ -188,13 +188,13 @@ int main(int argc, char **argv) {
sway_log(L_INFO, "Starting sway version %s (%s, branch \"%s\")\n", SWAY_GIT_VERSION, SWAY_VERSION_DATE, SWAY_GIT_BRANCH);
#endif
init_layout();
if (validate) {
bool valid = load_config(config_path);
return valid ? 0 : 1;
}
init_layout();
if (!load_config(config_path)) {
sway_log(L_ERROR, "Error(s) loading config!");
}