mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-02 19:56:23 -04:00
fix cut off pull down on creating offer
This commit is contained in:
parent
ccd72394fc
commit
967ac007c3
1 changed files with 2 additions and 1 deletions
|
@ -1265,6 +1265,7 @@ public class FormBuilder {
|
|||
|
||||
final JFXComboBox<T> comboBox = new JFXComboBox<>();
|
||||
comboBox.setPromptText(prompt);
|
||||
comboBox.setPadding(new Insets(top, 0, 0, 12));
|
||||
|
||||
vBox.getChildren().addAll(label, comboBox);
|
||||
|
||||
|
@ -1399,7 +1400,7 @@ public class FormBuilder {
|
|||
|
||||
GridPane.setRowIndex(comboBox, rowIndex);
|
||||
GridPane.setColumnIndex(comboBox, 0);
|
||||
comboBox.setPadding(new Insets(0, 10, 0, 10));
|
||||
comboBox.setPadding(new Insets(0, 0, 0, 12));
|
||||
GridPane.setMargin(comboBox, new Insets(top + Layout.FLOATING_LABEL_DISTANCE, 0, 0, 0));
|
||||
gridPane.getChildren().add(comboBox);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue