diff --git a/desktop/src/main/java/bisq/desktop/main/offer/offerbook/OfferBookView.java b/desktop/src/main/java/bisq/desktop/main/offer/offerbook/OfferBookView.java index 4b47cedf1c7..4ff8bce652f 100644 --- a/desktop/src/main/java/bisq/desktop/main/offer/offerbook/OfferBookView.java +++ b/desktop/src/main/java/bisq/desktop/main/offer/offerbook/OfferBookView.java @@ -408,11 +408,12 @@ private void onCreateOffer() { createOfferButton.setDisable(true); offerActionHandler.onCreateOffer(model.getSelectedTradeCurrency()); }) - .closeButtonText(Res.get("offerbook.setupNewAccount")) - .onClose(() -> { + .secondaryActionButtonText(Res.get("offerbook.setupNewAccount")) + .onSecondaryAction(() -> { navigation.setReturnPath(navigation.getCurrentPath()); navigation.navigateTo(MainView.class, AccountView.class, FiatAccountsView.class); }) + .width(725) .show(); } else if (!model.hasAcceptedArbitrators()) { new Popup<>().warning(Res.get("popup.warning.noArbitratorsAvailable")).show();