Fix #116196: Edge selection with hidden Asset Shelf #116233

Merged
Harley Acheson merged 2 commits from Harley/blender:ShellHiddenEdge into main 2023-12-20 01:21:27 +01:00
1 changed files with 7 additions and 0 deletions

View File

@ -1075,6 +1075,13 @@ static bool region_azone_edge_poll(const ARegion *region, const bool is_fullscre
return false;
}
/* Don't use edge if the region hides with previous region which is now hidden. See #116196. */
if ((region->alignment & (RGN_SPLIT_PREV | RGN_ALIGN_HIDE_WITH_PREV) && region->prev) &&
region->prev->flag & (RGN_FLAG_HIDDEN | RGN_FLAG_TOO_SMALL))
{
return false;
}
const bool is_hidden = (region->flag & (RGN_FLAG_HIDDEN | RGN_FLAG_TOO_SMALL));
if (is_hidden && is_fullscreen) {