Dont remove listener on fault

This commit is contained in:
Manfred Karrer 2016-05-25 15:53:29 +02:00
parent 148278a959
commit ea76c0577e
3 changed files with 14 additions and 9 deletions

View file

@ -225,9 +225,8 @@ public abstract class TradeStepView extends AnchorPane {
}
private void showDisputeInfoLabel() {
if (notificationGroup != null) {
if (notificationGroup != null)
notificationGroup.setLabelAndHeadlineVisible(true);
}
}
private void showOpenDisputeButton() {
@ -308,6 +307,10 @@ public abstract class TradeStepView extends AnchorPane {
notificationGroup.label.setText(getWarningText());
}
private void removeWarning() {
hideNotificationGroup();
}
protected String getWarningText() {
return "";
}
@ -402,7 +405,10 @@ public abstract class TradeStepView extends AnchorPane {
case NORMAL:
break;
case HALF_REACHED:
showWarning();
if (trade.getState().getPhase().ordinal() < Trade.Phase.FIAT_RECEIVED.ordinal())
showWarning();
else
removeWarning();
break;
case TRADE_PERIOD_OVER:
onOpenForDispute();