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 81d877aabf4..e109d4b7ea2 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 @@ -1045,7 +1045,10 @@ public void updateItem(final OfferBookListItem item, boolean empty) { canTakeOfferResult = model.offerFilter.canTakeOffer(offer, false); tableRow.setOpacity(canTakeOfferResult.isValid() || myOffer ? 1 : 0.4); - if (canTakeOfferResult.isValid()) { + if (myOffer) { + button.setDefaultButton(false); + tableRow.setOnMousePressed(null); + } else if (canTakeOfferResult.isValid()) { // set first row button as default button.setDefaultButton(getIndex() == 0); tableRow.setOnMousePressed(null);