Skip to content

Commit f6f40df

Browse files
authored
Merge pull request #151 from yombodev/fix-bounds-cover-itemBox-GrandExchange
fix bounds ItemBox grandexchange.simba
2 parents e76c7c7 + f1cab52 commit f6f40df

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

osrs/interfaces/mainscreen/grandexchange/grandexchange.simba

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,10 @@ begin
117117

118118
Self.SellButton := Self.BuyButton.Offset([56,0]);
119119

120-
Self.ItemBox.X1 := X1+6;
121-
Self.ItemBox.Y1 := Y1+35;
122-
Self.ItemBox.X2 := Self.ItemBox.X1+35;
123-
Self.ItemBox.Y2 := Self.ItemBox.Y1+31;
120+
Self.ItemBox.X1 := X1+5;
121+
Self.ItemBox.Y1 := Y1+33;
122+
Self.ItemBox.X2 := Self.ItemBox.X1+36;
123+
Self.ItemBox.Y2 := Self.ItemBox.Y1+32;
124124

125125
Self.ItemNameBox.X1 := X1+44;
126126
Self.ItemNameBox.Y1 := Y1+33;

0 commit comments

Comments
 (0)