mirror of
https://github.com/boldsuck/haveno.git
synced 2025-01-24 08:35:51 +00:00
show 'preparing confirmation' on payment sent/received clicked
This commit is contained in:
parent
adccf27385
commit
d0a25d7d5b
2 changed files with 2 additions and 2 deletions
|
@ -580,7 +580,7 @@ public class BuyerStep2View extends TradeStepView {
|
||||||
|
|
||||||
private void confirmPaymentSent() {
|
private void confirmPaymentSent() {
|
||||||
busyAnimation.play();
|
busyAnimation.play();
|
||||||
statusLabel.setText(Res.get("shared.sendingConfirmation"));
|
statusLabel.setText(Res.get("shared.preparingConfirmation"));
|
||||||
confirmButton.setDisable(true);
|
confirmButton.setDisable(true);
|
||||||
|
|
||||||
model.dataModel.onPaymentSent(() -> {
|
model.dataModel.onPaymentSent(() -> {
|
||||||
|
|
|
@ -442,7 +442,7 @@ public class SellerStep3View extends TradeStepView {
|
||||||
private void confirmPaymentReceived() {
|
private void confirmPaymentReceived() {
|
||||||
log.info("User pressed the [Confirm payment receipt] button for Trade {}", trade.getShortId());
|
log.info("User pressed the [Confirm payment receipt] button for Trade {}", trade.getShortId());
|
||||||
busyAnimation.play();
|
busyAnimation.play();
|
||||||
statusLabel.setText(Res.get("shared.sendingConfirmation"));
|
statusLabel.setText(Res.get("shared.preparingConfirmation"));
|
||||||
confirmButton.setDisable(true);
|
confirmButton.setDisable(true);
|
||||||
|
|
||||||
model.dataModel.onPaymentReceived(() -> {
|
model.dataModel.onPaymentReceived(() -> {
|
||||||
|
|
Loading…
Reference in a new issue