mirror of
https://github.com/vale981/bspwm
synced 2025-03-05 09:51:38 -05:00
Missing comparison
This commit is contained in:
parent
48a07d40d9
commit
11999bc55b
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ void process_message(char *msg, char *rsp)
|
|||
split_dir = parse_direction(dir);
|
||||
draw_triple_border(desk->focus, active_border_color_pxl);
|
||||
}
|
||||
} else if (strcmp(cmd, "push") == 0 || strcmp(cmd, "pull")) {
|
||||
} else if (strcmp(cmd, "push") == 0 || strcmp(cmd, "pull") == 0) {
|
||||
char *dir = strtok(NULL, TOKEN_SEP);
|
||||
if (dir != NULL) {
|
||||
fence_move_t m = parse_fence_move(cmd);
|
||||
|
|
Loading…
Add table
Reference in a new issue