From 7d2710e66dd864985a05a8ea3e925af737b9a422 Mon Sep 17 00:00:00 2001 From: Gabriel Date: Tue, 13 Apr 2021 13:22:20 -0300 Subject: [PATCH] fix(inventory): invert page button position --- .../nextplugins/nextmarket/inventory/CategoryInventory.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/nextplugins/nextmarket/inventory/CategoryInventory.java b/src/main/java/com/nextplugins/nextmarket/inventory/CategoryInventory.java index 73812b2..cd40f8a 100644 --- a/src/main/java/com/nextplugins/nextmarket/inventory/CategoryInventory.java +++ b/src/main/java/com/nextplugins/nextmarket/inventory/CategoryInventory.java @@ -61,8 +61,8 @@ protected void configureViewer(PagedViewer viewer) { configuration.titleInventory(category.getConfiguration().getInventoryTitle()); configuration.backInventory("market.main"); - configuration.nextPageSlot(45); - configuration.previousPageSlot(53); + configuration.nextPageSlot(53); + configuration.previousPageSlot(45); } @Override