How i can adjust height of my panel node to window height

Hi everyone ,
I’m running into a GUI layout issue related to ADJUST_MODE_ZOOM vs STRETCH, and I want to make sure my hierarchy is correct.

What I’m trying to achieve

A right-side panel that:

  • Is aligned to the top-right

  • Has fixed width

  • Always fills the entire visible screen height (for panel_picker, scroll_panel, scroll_panel1)

  • Works consistently on:

    • 2048×1536 (tablet / 4:3)

    • Phone landscape (wide aspect ratios)

Current behavior

  • On 2048×1536, the panel fits perfectly

  • On phone landscape, the bottom of the panel is cut off

  • This happens even without any GUI script, using only GUI adjust & anchors

root (ADJUST_MODE_STRETCH)
└─ NE_anchor (XANCHOR_RIGHT, YANCHOR_TOP, ADJUST_MODE_ZOOM)
└─ panel_picker (YANCHOR_TOP, PIVOT_N, ADJUST_MODE_STRETCH)
├─ scroll_panel (STRETCH, clipped)
└─ scroll_panel1 (STRETCH, clipped)

root:
adjust_mode: STRETCH

NE_anchor:
parent: root
xanchor: RIGHT
yanchor: TOP
adjust_mode: ZOOM

panel_picker:
parent: NE_anchor
yanchor: TOP
pivot: PIVOT_N
adjust_mode: STRETCH

See above image in long landscape resolution i’m getting panel cut off in botttom screen that i dont want it.

I also tried some AI script solutions to adjust panel and scroll height to window size but getting then this issue

On 2048x1536 resolution panel size is half on window height this was the script, even i directly just set current window height to panel but still getting half panel size in this resolution. So no luck to finding solution yet!