fix bad condition
This commit is contained in:
2
dwl.c
2
dwl.c
@@ -2451,7 +2451,7 @@ urgent(struct wl_listener *listener, void *data)
|
||||
void
|
||||
view(const Arg *arg)
|
||||
{
|
||||
if (selmon && (arg->ui & TAGMASK) == selmon->tagset[selmon->seltags])
|
||||
if (!selmon || (arg->ui & TAGMASK) == selmon->tagset[selmon->seltags])
|
||||
return;
|
||||
selmon->seltags ^= 1; /* toggle sel tagset */
|
||||
if (arg->ui & TAGMASK)
|
||||
|
Reference in New Issue
Block a user