aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/bar/tray_bind.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/bar/tray_bind.c')
-rw-r--r--sway/commands/bar/tray_bind.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/commands/bar/tray_bind.c b/sway/commands/bar/tray_bind.c
index 48a15462..7fe67c42 100644
--- a/sway/commands/bar/tray_bind.c
+++ b/sway/commands/bar/tray_bind.c
@@ -67,7 +67,7 @@ static struct cmd_results *tray_bind(int argc, char **argv, bool code) {
67 other->command = binding->command; 67 other->command = binding->command;
68 free(binding); 68 free(binding);
69 binding = other; 69 binding = other;
70 wlr_log(WLR_DEBUG, 70 sway_log(SWAY_DEBUG,
71 "[bar %s] Updated tray binding for %u (%s) to %s", 71 "[bar %s] Updated tray binding for %u (%s) to %s",
72 config->current_bar->id, binding->button, name, 72 config->current_bar->id, binding->button, name,
73 binding->command); 73 binding->command);
@@ -76,7 +76,7 @@ static struct cmd_results *tray_bind(int argc, char **argv, bool code) {
76 } 76 }
77 if (!overwritten) { 77 if (!overwritten) {
78 wl_list_insert(&config->current_bar->tray_bindings, &binding->link); 78 wl_list_insert(&config->current_bar->tray_bindings, &binding->link);
79 wlr_log(WLR_DEBUG, "[bar %s] Added tray binding for %u (%s) to %s", 79 sway_log(SWAY_DEBUG, "[bar %s] Added tray binding for %u (%s) to %s",
80 config->current_bar->id, binding->button, name, 80 config->current_bar->id, binding->button, name,
81 binding->command); 81 binding->command);
82 } 82 }