Merge pull request #6382 from 28allday/resolve-full-opacity

Exempt DaVinci Resolve from default window opacity
This commit is contained in:
Gavin Nugent
2026-07-26 15:22:08 -07:00
committed by GitHub
parent 3f18182ef3
commit d8397ee654
+8 -2
View File
@@ -1,2 +1,8 @@
-- DaVinci Resolve dialog focus handling.
o.window(".*[Rr]esolve.*", { float = true, stay_focused = true })
-- DaVinci Resolve window focus handling. Kept fully opaque: the default
-- translucency distorts colour-critical grading work.
o.window(".*[Rr]esolve.*", {
float = true,
stay_focused = true,
tag = "-default-opacity",
opacity = "1 1",
})