Always on top popup

Godot Version

4.4.1

Question

This is tree that I'm using:

I would like both popups to be “always on top”. But currently when I alt-tab, popup dissapears undor appliation window.

I’ve got:

	exclusive = true
	always_on_top = true
	transient = true

You’ll probably want to have them as Windows (meh) if you want them to be separate from the base game window. As per the docs:

Popups are sub-windows that don’t show as separate windows in system’s window manager’s window list and will send close request when anything is clicked outside of them (unless exclusive is enabled).

Yes, had to make it as window, and exclusive. Thanks mate.