mirror of
https://github.com/mintycube/dwm.git
synced 2024-10-22 14:05:45 +02:00
bartabgroups: adding guard for missing wintitleactions patch, just to align with patch
This commit is contained in:
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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user