Skip to content

Commit 8a7e9d4

Browse files
authored
Merge pull request #152 from yombodev/fix-Horizontal-Distance-Slots-GE
Adjust GE quantity slot dimensions and fix overflow
2 parents d52c075 + 2a03bd9 commit 8a7e9d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

osrs/interfaces/mainscreen/grandexchange/grandexchange.simba

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ begin
120120
Self.ItemBox.X1 := X1+5;
121121
Self.ItemBox.Y1 := Y1+33;
122122
Self.ItemBox.X2 := Self.ItemBox.X1+36;
123-
Self.ItemBox.Y2 := Self.ItemBox.Y1+32;
123+
Self.ItemBox.Y2 := Self.ItemBox.Y1+34;
124124

125125
Self.ItemNameBox.X1 := X1+44;
126126
Self.ItemNameBox.Y1 := Y1+33;
@@ -474,7 +474,7 @@ begin
474474
Self.Title.Setup(Self.Bounds);
475475
Self.Title.IsOpen := @Self.IsOpen;
476476

477-
tba := TBoxArray.Create(Self.Bounds.TopLeft + [9,65], 4, 2, 114, 110, [3, 9]);
477+
tba := TBoxArray.Create(Self.Bounds.TopLeft + [9,65], 4, 2, 114, 110, [3, 8]);
478478
for i := 0 to High(tba) do
479479
Self.Slots[i]._Setup(tba[i]);
480480

0 commit comments

Comments
 (0)