mirror of
https://github.com/bisq-network/bisq.git
synced 2025-01-18 21:35:03 +01:00
Merge pull request #6641 from helixx87/6629-fix-close-button-after-offer-creation
Fix close button behaviour on successful offer creation popup
This commit is contained in:
commit
28bb0a60fc
@ -804,7 +804,7 @@ public abstract class MutableOfferView<M extends MutableOfferViewModel<?>> exten
|
||||
.dontShowAgainId(key)
|
||||
.actionButtonTextWithGoTo("navigation.portfolio.myOpenOffers")
|
||||
.onAction(this::closeAndGoToOpenOffers)
|
||||
.onClose(this::closeAndGoToOpenOffers)
|
||||
.onClose(this::close)
|
||||
.show(),
|
||||
1);
|
||||
} else {
|
||||
|
@ -315,7 +315,7 @@ public class BsqSwapCreateOfferView extends BsqSwapOfferView<BsqSwapCreateOfferV
|
||||
.dontShowAgainId(key)
|
||||
.actionButtonTextWithGoTo("navigation.portfolio.myOpenOffers")
|
||||
.onAction(this::closeAndGoToOpenOffers)
|
||||
.onClose(this::closeAndGoToOpenOffers)
|
||||
.onClose(this::close)
|
||||
.show(),
|
||||
1, TimeUnit.SECONDS);
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user