scratchpads: when the scratchpad patch is added, the tagmask is altered, so to get a window onto all tags you have to do ~SPTAGSMASK instead of ~0 as otherwise it will interfere with the scratchpads, ref. #53
This commit is contained in:
@ -13,7 +13,11 @@ viewex(const Arg *arg)
|
||||
void
|
||||
viewallex(const Arg *arg)
|
||||
{
|
||||
#if SCRATCHPADS_PATCH
|
||||
view(&((Arg){.ui = ~SPTAGMASK}));
|
||||
#else
|
||||
view(&((Arg){.ui = ~0}));
|
||||
#endif // SCRATCHPADS_PATCH
|
||||
}
|
||||
|
||||
void
|
||||
@ -37,7 +41,11 @@ toggletagex(const Arg *arg)
|
||||
void
|
||||
tagallex(const Arg *arg)
|
||||
{
|
||||
#if SCRATCHPADS_PATCH
|
||||
tag(&((Arg){.ui = ~SPTAGMASK}));
|
||||
#else
|
||||
tag(&((Arg){.ui = ~0}));
|
||||
#endif // SCRATCHPADS_PATCH
|
||||
}
|
||||
|
||||
int
|
||||
|
Reference in New Issue
Block a user