mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Fix broken option for BSQ Altcoin and BSQ Altcoin Instant
This commit is contained in:
parent
fce247cbc0
commit
348d1477e1
@ -294,8 +294,8 @@ public abstract class OfferView extends ActivatableView<TabPane, Void> {
|
||||
View view;
|
||||
// CreateOffer and TakeOffer must not be cached by ViewLoader as we cannot use a view multiple times
|
||||
// in different graphs
|
||||
if ((paymentMethod != null && paymentMethod.isBsqSwap()) ||
|
||||
viewClass.equals(BsqOfferBookView.class)) {
|
||||
if ((paymentMethod != null && (paymentMethod.isBsqSwap() || paymentMethod.getId().equals(GUIUtil.SHOW_ALL_FLAG))) ||
|
||||
(paymentMethod == null && viewClass.equals(BsqOfferBookView.class))) {
|
||||
view = viewLoader.load(BsqSwapCreateOfferView.class);
|
||||
((BsqSwapCreateOfferView) view).initWithData(direction, offerActionHandler, payload);
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user