run_assignments: check for A_COMMAND early
This commit is contained in:
parent
e3e09119bf
commit
6306acdb65
|
@ -22,7 +22,7 @@ void run_assignments(i3Window *window) {
|
||||||
/* Check if any assignments match */
|
/* Check if any assignments match */
|
||||||
Assignment *current;
|
Assignment *current;
|
||||||
TAILQ_FOREACH(current, &assignments, assignments) {
|
TAILQ_FOREACH(current, &assignments, assignments) {
|
||||||
if (!match_matches_window(&(current->match), window))
|
if (current->type != A_COMMAND || !match_matches_window(&(current->match), window))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
bool skip = false;
|
bool skip = false;
|
||||||
|
@ -45,9 +45,7 @@ void run_assignments(i3Window *window) {
|
||||||
window->ran_assignments = srealloc(window->ran_assignments, sizeof(Assignment *) * window->nr_assignments);
|
window->ran_assignments = srealloc(window->ran_assignments, sizeof(Assignment *) * window->nr_assignments);
|
||||||
window->ran_assignments[window->nr_assignments - 1] = current;
|
window->ran_assignments[window->nr_assignments - 1] = current;
|
||||||
|
|
||||||
DLOG("matching assignment, would do:\n");
|
DLOG("matching assignment, execute command %s\n", current->dest.command);
|
||||||
if (current->type == A_COMMAND) {
|
|
||||||
DLOG("execute command %s\n", current->dest.command);
|
|
||||||
char *full_command;
|
char *full_command;
|
||||||
sasprintf(&full_command, "[id=\"%d\"] %s", window->id, current->dest.command);
|
sasprintf(&full_command, "[id=\"%d\"] %s", window->id, current->dest.command);
|
||||||
CommandResult *result = parse_command(full_command, NULL);
|
CommandResult *result = parse_command(full_command, NULL);
|
||||||
|
@ -58,7 +56,6 @@ void run_assignments(i3Window *window) {
|
||||||
|
|
||||||
command_result_free(result);
|
command_result_free(result);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/* If any of the commands required re-rendering, we will do that now. */
|
/* If any of the commands required re-rendering, we will do that now. */
|
||||||
if (needs_tree_render)
|
if (needs_tree_render)
|
||||||
|
|
Loading…
Reference in New Issue