mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-09-23 06:24:41 -04:00
add bottom padding for copy, clone, and edit offer views (#1935)
This commit is contained in:
parent
55c02a53d3
commit
19ee6d4343
3 changed files with 3 additions and 3 deletions
|
@ -110,7 +110,7 @@ public class CloneOfferView extends MutableOfferView<CloneOfferViewModel> {
|
|||
volumeCurrencyLabel.setDisable(true);
|
||||
|
||||
// Workaround to fix margin on top of amount group
|
||||
gridPane.setPadding(new Insets(-20, 25, -1, 25));
|
||||
gridPane.setPadding(new Insets(-20, 25, 25, 25));
|
||||
|
||||
updatePriceToggle();
|
||||
updateElementsWithDirection();
|
||||
|
|
|
@ -54,7 +54,7 @@ public class DuplicateOfferView extends MutableOfferView<DuplicateOfferViewModel
|
|||
super.doActivate();
|
||||
|
||||
// Workaround to fix margin on top of amount group
|
||||
gridPane.setPadding(new Insets(-20, 25, -1, 25));
|
||||
gridPane.setPadding(new Insets(-20, 25, 25, 25));
|
||||
|
||||
updatePriceToggle();
|
||||
|
||||
|
|
|
@ -103,7 +103,7 @@ public class EditOfferView extends MutableOfferView<EditOfferViewModel> {
|
|||
volumeCurrencyLabel.setDisable(true);
|
||||
|
||||
// Workaround to fix margin on top of amount group
|
||||
gridPane.setPadding(new Insets(-20, 25, -1, 25));
|
||||
gridPane.setPadding(new Insets(-20, 25, 25, 25));
|
||||
|
||||
updatePriceToggle();
|
||||
updateElementsWithDirection();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue