mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-10-01 01:35:48 -04:00
stop busy animation on reset payment state
This commit is contained in:
parent
78ec06b851
commit
6b34651101
@ -148,6 +148,8 @@ public class BuyerStep2View extends TradeStepView {
|
||||
timeoutTimer.stop();
|
||||
|
||||
if (trade.isDepositsUnlocked() && !trade.isPaymentSent()) {
|
||||
busyAnimation.stop();
|
||||
statusLabel.setText("");
|
||||
showPopup();
|
||||
} else if (state.ordinal() <= Trade.State.SELLER_RECEIVED_PAYMENT_SENT_MSG.ordinal()) {
|
||||
switch (state) {
|
||||
|
@ -109,6 +109,8 @@ public class SellerStep3View extends TradeStepView {
|
||||
timeoutTimer.stop();
|
||||
|
||||
if (trade.isPaymentSent() && !trade.isPaymentReceived()) {
|
||||
busyAnimation.stop();
|
||||
statusLabel.setText("");
|
||||
showPopup();
|
||||
} else if (trade.isPaymentReceived()) {
|
||||
if (trade.isCompleted()) {
|
||||
|
Loading…
Reference in New Issue
Block a user