shiftviewclients: fixed bug when scratchpad is enabled

This commit is contained in:
bakkeby 2020-10-04 11:36:51 +02:00
parent 5132e3a289
commit 3b5f3f66ce

View File

@ -16,7 +16,11 @@ shiftviewclients(const Arg *arg)
tagmask = tagmask | c->tags; tagmask = tagmask | c->tags;
#endif // SCRATCHPADS_PATCH #endif // SCRATCHPADS_PATCH
#if SCRATCHPADS_PATCH
shifted.ui = selmon->tagset[selmon->seltags] & ~SPTAGMASK;
#else
shifted.ui = selmon->tagset[selmon->seltags]; shifted.ui = selmon->tagset[selmon->seltags];
#endif // SCRATCHPADS_PATCH
if (arg->i > 0) // left circular shift if (arg->i > 0) // left circular shift
do { do {
shifted.ui = (shifted.ui << arg->i) shifted.ui = (shifted.ui << arg->i)