aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/reload.c
diff options
context:
space:
mode:
authorLibravatar Dominique Martinet <asmadeus@codewreck.org>2018-01-22 07:19:12 +0100
committerLibravatar Dominique Martinet <asmadeus@codewreck.org>2018-01-22 07:26:40 +0100
commit6259831d3168898a3f1560fb832106d194b582b4 (patch)
treed74612bada10c8300d8c7f9ccdc16e57280cb03b /sway/commands/reload.c
parentconfig reload: destroy old seat when removed from config (diff)
downloadsway-6259831d3168898a3f1560fb832106d194b582b4.tar.gz
sway-6259831d3168898a3f1560fb832106d194b582b4.tar.zst
sway-6259831d3168898a3f1560fb832106d194b582b4.zip
commands/reload: remove unimplemented 'load_swaybars' call
Diffstat (limited to 'sway/commands/reload.c')
-rw-r--r--sway/commands/reload.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/reload.c b/sway/commands/reload.c
index 2b553845..419c7de3 100644
--- a/sway/commands/reload.c
+++ b/sway/commands/reload.c
@@ -14,7 +14,7 @@ struct cmd_results *cmd_reload(int argc, char **argv) {
14 return cmd_results_new(CMD_FAILURE, "reload", "Error(s) reloading config."); 14 return cmd_results_new(CMD_FAILURE, "reload", "Error(s) reloading config.");
15 } 15 }
16 16
17 load_swaybars(); 17 /* load_swaybars(); -- for when it's implemented */
18 18
19 arrange_windows(&root_container, -1, -1); 19 arrange_windows(&root_container, -1, -1);
20 return cmd_results_new(CMD_SUCCESS, NULL, NULL); 20 return cmd_results_new(CMD_SUCCESS, NULL, NULL);