mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2026-05-03 06:46:38 -04:00
fix: only scroller layout support is_clip_to_hide
This commit is contained in:
parent
73ebdb0fdd
commit
54109d3bf6
1 changed files with 2 additions and 1 deletions
3
maomao.c
3
maomao.c
|
|
@ -1595,7 +1595,8 @@ arrange(Monitor *m, bool want_animation) {
|
||||||
|
|
||||||
if (c->mon == m) {
|
if (c->mon == m) {
|
||||||
if (VISIBLEON(c, m)) {
|
if (VISIBLEON(c, m)) {
|
||||||
if(!c->is_clip_to_hide)
|
if(!c->is_clip_to_hide || strcmp(c->mon->pertag->ltidxs[c->mon->pertag->curtag]->name,
|
||||||
|
"scroller") != 0)
|
||||||
wlr_scene_node_set_enabled(&c->scene->node, true);
|
wlr_scene_node_set_enabled(&c->scene->node, true);
|
||||||
client_set_suspended(c, false);
|
client_set_suspended(c, false);
|
||||||
if (!c->animation.from_rule && want_animation &&
|
if (!c->animation.from_rule && want_animation &&
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue