Skip to content

Commit

Permalink
Merge pull request #3600 from beingindot/moneygram_issue
Browse files Browse the repository at this point in the history
Added padding for flowpane to resolve moneygram save issue.
  • Loading branch information
ripcurlx authored Nov 12, 2019
2 parents cc2df91 + a132698 commit d00179c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,8 @@ private void onCountrySelected(Country country) {
}

private void addCurrenciesGrid(boolean isEditable) {
final Tuple2<Label, FlowPane> labelFlowPaneTuple2 = addTopLabelFlowPane(gridPane, ++gridRow, Res.get("payment.supportedCurrencies"), 0);
final Tuple2<Label, FlowPane> labelFlowPaneTuple2 = addTopLabelFlowPane(gridPane, ++gridRow, Res.get("payment.supportedCurrencies"),
Layout.FLOATING_LABEL_DISTANCE * 3, Layout.FLOATING_LABEL_DISTANCE * 3);

FlowPane flowPane = labelFlowPaneTuple2.second;

Expand Down

0 comments on commit d00179c

Please sign in to comment.