roundCorners(coverImageView, 10);
Label maxPledgesWarning = new Label(String.format("You can collect a maximum of %d pledges, due to limits in the Bitcoin protocol.", ProjectModel.MAX_NUM_INPUTS));
maxPledgesWarning.setStyle("-fx-font-size: 12; -fx-padding: 10");
maxPledgesPopOver = new PopOver(maxPledgesWarning);
maxPledgesPopOver.setDetachable(false);
maxPledgesPopOver.setArrowLocation(PopOver.ArrowLocation.BOTTOM_CENTER);
minPledgeEdit.focusedProperty().addListener(o -> {
if (minPledgeEdit.isFocused())
maxPledgesPopOver.show(minPledgeEdit);