Skip to content

Commit

Permalink
Fix options screen being off-center
Browse files Browse the repository at this point in the history
  • Loading branch information
StavWasPlayZ committed Jun 14, 2023
1 parent 3dde232 commit b6a86e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id 'org.parchmentmc.librarian.forgegradle' version '1.+'
}

version = '2.2.1.1'
version = '2.2.1.2'
group = 'com.cstav.genshinstrument' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = 'genshinstrument-1.19.2'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ protected void init() {
initOptionsGrid(grid, rowHelper);

grid.setY(40);
grid.setX((grid.getWidth() + getSmallButtonWidth()) / 2 - getHorzPadding() * 2);
grid.setX((width - grid.getWidth()) / 2);

addRenderableWidget(grid);

Expand Down

0 comments on commit b6a86e2

Please sign in to comment.