mirror of
https://github.com/swaywm/sway.git
synced 2024-11-22 16:01:27 +00:00
commands/reload: remove unimplemented 'load_swaybars' call
This commit is contained in:
parent
5766f426aa
commit
6259831d31
|
@ -14,7 +14,7 @@ struct cmd_results *cmd_reload(int argc, char **argv) {
|
||||||
return cmd_results_new(CMD_FAILURE, "reload", "Error(s) reloading config.");
|
return cmd_results_new(CMD_FAILURE, "reload", "Error(s) reloading config.");
|
||||||
}
|
}
|
||||||
|
|
||||||
load_swaybars();
|
/* load_swaybars(); -- for when it's implemented */
|
||||||
|
|
||||||
arrange_windows(&root_container, -1, -1);
|
arrange_windows(&root_container, -1, -1);
|
||||||
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
||||||
|
|
|
@ -717,7 +717,3 @@ char *do_var_replacement(char *str) {
|
||||||
}
|
}
|
||||||
return str;
|
return str;
|
||||||
}
|
}
|
||||||
|
|
||||||
void load_swaybars() {
|
|
||||||
/* stub function for reload commnd, to fill when we restore swaybars */
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue