Use feedback style instead of confirmation at proposla publish success popup

This commit is contained in:
Manfred Karrer 2019-01-29 21:32:09 +01:00
parent ed5e5e6d47
commit 1e6777bb09
No known key found for this signature in database
GPG key ID: 401250966A6B2C46

View file

@ -242,7 +242,7 @@ public class MakeProposalView extends ActivatableView<GridPane, Void> implements
proposalDisplay.clearForm();
proposalTypeComboBox.getSelectionModel().clearSelection();
if (!DevEnv.isDevMode())
new Popup<>().confirmation(Res.get("dao.tx.published.success")).show();
new Popup<>().feedback(Res.get("dao.tx.published.success")).show();
},
errorMessage -> new Popup<>().warning(errorMessage).show());
}