fix: view not cross monitor
This commit is contained in:
4
maomao.c
4
maomao.c
@@ -6699,7 +6699,7 @@ void viewtoright_have_client(const Arg *arg) {
|
|||||||
|
|
||||||
for (target <<= 1; target & TAGMASK; target <<= 1, n++) {
|
for (target <<= 1; target & TAGMASK; target <<= 1, n++) {
|
||||||
wl_list_for_each(c, &clients, link) {
|
wl_list_for_each(c, &clients, link) {
|
||||||
if (target & c->tags) {
|
if (c->mon == selmon && target & c->tags) {
|
||||||
found = 1;
|
found = 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -6773,7 +6773,7 @@ void viewtoleft_have_client(const Arg *arg) {
|
|||||||
|
|
||||||
for (target >>= 1; target > 0; target >>= 1, n++) {
|
for (target >>= 1; target > 0; target >>= 1, n++) {
|
||||||
wl_list_for_each(c, &clients, link) {
|
wl_list_for_each(c, &clients, link) {
|
||||||
if (target & c->tags) {
|
if (c->mon == selmon && target & c->tags) {
|
||||||
found = 1;
|
found = 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user