From 74ae93e2d1c0139b2948255a98c61f0ea1c9c6a7 Mon Sep 17 00:00:00 2001 From: Simone Romano <19979417+SunTrustDev@users.noreply.github.com> Date: Fri, 16 Jan 2026 01:19:51 +0100 Subject: [PATCH] FIX: Ensure belt window is displayed above other windows when inventory is opened --- assets/root/uiinventory.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/assets/root/uiinventory.py b/assets/root/uiinventory.py index 8052a51c..a5629287 100644 --- a/assets/root/uiinventory.py +++ b/assets/root/uiinventory.py @@ -108,6 +108,8 @@ class BeltInventoryWindow(ui.ScriptWindow): ui.ScriptWindow.__init__(self) + self.AddFlag("float") + self.isLoaded = 0 self.wndInventory = wndInventory @@ -1106,6 +1108,9 @@ class InventoryWindow(ui.ScriptWindow): if None != self.tooltipItem: self.tooltipItem.SetTop() + if self.wndBelt: + self.wndBelt.SetTop() + def OnPressEscapeKey(self): self.Close() return True