mirror of
https://github.com/yshui/picom.git
synced 2024-11-11 13:51:02 -05:00
d4e76b271a
Previously win_set_shadow tries to release the shadow image when turning off shadow for a window. When shadow is turned off _immediately_ after it's turned on, picom won't have a chance to handle the delayed creation of the shadow before win_set_shadow tries to release the shadow image, causing a assertion failure because win_set_shadow tried to release a non-existing image. This commit makes releasing the shadow image delayed as well. In theory, we could check the STALE flag in win_set_shadow before release the image, but that duplicates the logic that is already in win_process_flags. Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
10 lines
405 B
Bash
Executable file
10 lines
405 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
exe=$(realpath $1)
|
|
cd $(dirname $0)
|
|
|
|
./run_one_test.sh $exe configs/empty.conf testcases/basic.py
|
|
./run_one_test.sh $exe configs/issue239.conf testcases/issue239.py
|
|
./run_one_test.sh $exe configs/issue239_2.conf testcases/issue239_2.py
|
|
./run_one_test.sh $exe configs/issue239_3.conf testcases/issue239_3.py
|
|
./run_one_test.sh $exe configs/issue239_3.conf testcases/issue239_3_norefresh.py
|