UI: Allow Region Overlap in Node Editor sidebar

Make sidebar see-through when Region Overlap
is enabled in the Preferences.

Pull Request: https://projects.blender.org/blender/blender/pulls/129466
This commit is contained in:
Pablo Vazquez
2024-10-28 16:30:51 +01:00
committed by Pablo Vazquez
parent 928794c6ac
commit 9b7e660fad

View File

@@ -1411,7 +1411,7 @@ bool ED_region_is_overlap(int spacetype, int regiontype)
}
if (U.uiflag2 & USER_REGION_OVERLAP) {
if (spacetype == SPACE_NODE) {
if (regiontype == RGN_TYPE_TOOLS) {
if (ELEM(regiontype, RGN_TYPE_TOOLS, RGN_TYPE_UI)) {
return true;
}
}