mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2025-10-29 05:40:21 -04:00
fix: avoid to set null client
This commit is contained in:
parent
f9dcaaae77
commit
3ca40b49f5
1 changed files with 6 additions and 1 deletions
|
|
@ -872,7 +872,12 @@ void tagmon(const Arg *arg) {
|
||||||
|
|
||||||
void tagsilent(const Arg *arg) {
|
void tagsilent(const Arg *arg) {
|
||||||
Client *fc;
|
Client *fc;
|
||||||
Client *target_client = selmon->sel;
|
Client *target_client;
|
||||||
|
|
||||||
|
if (!selmon || !selmon->sel)
|
||||||
|
return;
|
||||||
|
|
||||||
|
target_client = selmon->sel;
|
||||||
target_client->tags = arg->ui & TAGMASK;
|
target_client->tags = arg->ui & TAGMASK;
|
||||||
wl_list_for_each(fc, &clients, link) {
|
wl_list_for_each(fc, &clients, link) {
|
||||||
if (fc && fc != target_client && target_client->tags & fc->tags &&
|
if (fc && fc != target_client && target_client->tags & fc->tags &&
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue