Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class GasSiphonRecipeHandler extends TemplateRecipeHandler {
/** Modular window used to display the recipes */
protected final ModularWindow modularWindow;
/** Offsets of the recipe window */
private static final Pos2d WINDOW_OFFSET = new Pos2d(-2, -8);
private static final Pos2d WINDOW_OFFSET = new Pos2d(0, -8);

/** X coordinate of the category titles */
private static final int CATEGORY_TITLE_X = 30;
Expand Down
4 changes: 4 additions & 0 deletions src/main/java/gtnhintergalactic/nei/NEI_IG_Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ public void registerHandlerInfo(NEIRegisterHandlerInfosEvent event) {
.setShiftY(6)
.setWidth(160)
.setHeight(90)
.setShowFavoritesButton(false)
.setShowOverlayButton(false)
.setMaxRecipesPerPage(3)
.build());
event.registerHandlerInfo(
Expand All @@ -57,6 +59,8 @@ public void registerHandlerInfo(NEIRegisterHandlerInfosEvent event) {
.setShiftY(6)
.setWidth(160)
.setHeight(90)
.setShowFavoritesButton(false)
.setShowOverlayButton(false)
.setMaxRecipesPerPage(3)
.build());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class SpacePumpModuleRecipeHandler extends TemplateRecipeHandler {
/** Modular window used to display the recipes */
protected final ModularWindow modularWindow;
/** Offsets of the recipe window */
private static final Pos2d WINDOW_OFFSET = new Pos2d(-2, -8);
private static final Pos2d WINDOW_OFFSET = new Pos2d(0, -8);

/** X coordinate of the category titles */
private static final int CATEGORY_TITLE_X = 30;
Expand Down