mirror of
https://github.com/bisq-network/bisq.git
synced 2025-01-19 05:44:05 +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)
|
.dontShowAgainId(key)
|
||||||
.actionButtonTextWithGoTo("navigation.portfolio.myOpenOffers")
|
.actionButtonTextWithGoTo("navigation.portfolio.myOpenOffers")
|
||||||
.onAction(this::closeAndGoToOpenOffers)
|
.onAction(this::closeAndGoToOpenOffers)
|
||||||
.onClose(this::closeAndGoToOpenOffers)
|
.onClose(this::close)
|
||||||
.show(),
|
.show(),
|
||||||
1);
|
1);
|
||||||
} else {
|
} else {
|
||||||
|
@ -315,7 +315,7 @@ public class BsqSwapCreateOfferView extends BsqSwapOfferView<BsqSwapCreateOfferV
|
|||||||
.dontShowAgainId(key)
|
.dontShowAgainId(key)
|
||||||
.actionButtonTextWithGoTo("navigation.portfolio.myOpenOffers")
|
.actionButtonTextWithGoTo("navigation.portfolio.myOpenOffers")
|
||||||
.onAction(this::closeAndGoToOpenOffers)
|
.onAction(this::closeAndGoToOpenOffers)
|
||||||
.onClose(this::closeAndGoToOpenOffers)
|
.onClose(this::close)
|
||||||
.show(),
|
.show(),
|
||||||
1, TimeUnit.SECONDS);
|
1, TimeUnit.SECONDS);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user