summaryrefslogtreecommitdiffstats
path: root/swaybar/tray/item.c
diff options
context:
space:
mode:
Diffstat (limited to 'swaybar/tray/item.c')
-rw-r--r--swaybar/tray/item.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/swaybar/tray/item.c b/swaybar/tray/item.c
index 39d83b23..a43bbf6f 100644
--- a/swaybar/tray/item.c
+++ b/swaybar/tray/item.c
@@ -334,7 +334,7 @@ static void handle_click(struct swaybar_sni *sni, int x, int y,
334 334
335 if (strncmp(method, "Scroll", strlen("Scroll")) == 0) { 335 if (strncmp(method, "Scroll", strlen("Scroll")) == 0) {
336 char dir = method[strlen("Scroll")]; 336 char dir = method[strlen("Scroll")];
337 char *orientation = (dir = 'U' || dir == 'D') ? "vertical" : "horizontal"; 337 char *orientation = (dir == 'U' || dir == 'D') ? "vertical" : "horizontal";
338 int sign = (dir == 'U' || dir == 'L') ? -1 : 1; 338 int sign = (dir == 'U' || dir == 'L') ? -1 : 1;
339 339
340 sd_bus_call_method_async(sni->tray->bus, NULL, sni->service, sni->path, 340 sd_bus_call_method_async(sni->tray->bus, NULL, sni->service, sni->path,