1
0
mirror of https://github.com/mintycube/dwm.git synced 2024-10-22 12:05:45 +00:00

bartabgroups: adding guard for missing wintitleactions patch, just to align with patch

This commit is contained in:
bakkeby 2020-08-15 11:18:54 +02:00
parent 2632f112a8
commit cc495a80dc

@ -54,8 +54,10 @@ bartabdraw(Monitor *m, Client *c, int unused, int x, int w, int groupactive, Arg
drw_setscheme(drw, scheme[
m->sel == c
? SchemeSel
#ifdef HIDDEN
: HIDDEN(c)
? SchemeHid
#endif
: groupactive
? SchemeTabActive
: SchemeTabInactive
@ -92,6 +94,10 @@ bartabdraw(Monitor *m, Client *c, int unused, int x, int w, int groupactive, Arg
}
}
#ifndef HIDDEN
#define HIDDEN(C) 0
#endif
void
bartabclick(Monitor *m, Client *c, int passx, int x, int w, int unused, Arg *arg)
{