Fix bug with add info popup for first time user at take offer screen

This commit is contained in:
Manfred Karrer 2014-10-06 11:58:48 +02:00
parent aa66d591ab
commit f485afec19

View File

@ -196,6 +196,11 @@ public class TakeOfferViewCB extends CachedViewCB<TakeOfferPM> {
@FXML
void onTakeOffer() {
presentationModel.takeOffer();
}
@FXML
void onShowPayFundsScreen() {
if (presentationModel.displaySecurityDepositInfo()) {
overlayManager.blurContent();
List<Action> actions = new ArrayList<>();
@ -213,11 +218,6 @@ public class TakeOfferViewCB extends CachedViewCB<TakeOfferPM> {
actions);
}
presentationModel.takeOffer();
}
@FXML
void onShowPayFundsScreen() {
priceAmountPane.setInactive();
showPaymentInfoScreenButton.setVisible(false);