fix: move backpack contents below paperdoll, not below mana panel

This commit is contained in:
Erik 2026-03-13 20:03:17 +01:00
parent a6e941eb01
commit 83deb20a7f
2 changed files with 22 additions and 14 deletions

View file

@ -1714,10 +1714,12 @@ function showInventoryWindow(name) {
packList.className = 'inv-pack-list';
sidebar.appendChild(packList);
const leftColumn = document.createElement('div');
leftColumn.className = 'inv-left-column';
topSection.appendChild(equipGrid);
topSection.appendChild(sidebar);
topSection.appendChild(manaPanel);
const bottomSection = document.createElement('div');
bottomSection.className = 'inv-bottom-section';
@ -1735,8 +1737,11 @@ function showInventoryWindow(name) {
itemSection.appendChild(itemGrid);
bottomSection.appendChild(itemSection);
invContent.appendChild(topSection);
invContent.appendChild(bottomSection);
leftColumn.appendChild(topSection);
leftColumn.appendChild(bottomSection);
invContent.appendChild(leftColumn);
invContent.appendChild(manaPanel);
const resizeGrip = document.createElement('div');
resizeGrip.className = 'inv-resize-grip';