fix: move backpack contents below paperdoll, not below mana panel
This commit is contained in:
parent
a6e941eb01
commit
83deb20a7f
2 changed files with 22 additions and 14 deletions
|
|
@ -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';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue