Skip to content

Commit

Permalink
- fixed trade highlight top offset
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyusung4698 committed Nov 7, 2020
1 parent 0c3ce8b commit 7cc7692
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class TradeHighlightWindowService {
mergeMap(({ height }) => {
const width = this.poeWindow.calculateWidth(height);

data.gridTop = Math.round((height / 20) * 3);
data.gridTop = Math.round(height / 8.3);
data.gridSize = Math.floor(width / 12);
for (let j = data.gridSize; j >= 1; --j) {
const fraction = width / j;
Expand Down

0 comments on commit 7cc7692

Please sign in to comment.