Fixed logging statement.
Assignments don't necessarily represent workspace assignments, but could also be used, e.g., for no_focus. Hence, there's no point in logging dest.workspace for all assignments.
This commit is contained in:
parent
7c75d61a39
commit
0aa8d05b54
|
@ -76,7 +76,7 @@ Assignment *assignment_for(i3Window *window, int type) {
|
|||
if ((type != A_ANY && (assignment->type & type) == 0) ||
|
||||
!match_matches_window(&(assignment->match), window))
|
||||
continue;
|
||||
DLOG("got a matching assignment (to %s)\n", assignment->dest.workspace);
|
||||
DLOG("got a matching assignment\n");
|
||||
return assignment;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue