mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-10-13 19:10:42 -04:00
set max popup height to 730
This commit is contained in:
parent
00737b6e79
commit
f7ec36fd70
2 changed files with 2 additions and 0 deletions
|
@ -505,6 +505,7 @@ public abstract class Overlay<T extends Overlay<T>> {
|
|||
gridPane.setVgap(5);
|
||||
gridPane.setPadding(new Insets(64, 64, 64, 64));
|
||||
gridPane.setPrefWidth(width);
|
||||
gridPane.setMaxHeight(Layout.MAX_POPUP_HEIGHT);
|
||||
|
||||
ColumnConstraints columnConstraints1 = new ColumnConstraints();
|
||||
columnConstraints1.setHalignment(HPos.RIGHT);
|
||||
|
|
|
@ -22,6 +22,7 @@ public class Layout {
|
|||
public static final double INITIAL_WINDOW_HEIGHT = 710; //740
|
||||
public static final double MIN_WINDOW_WIDTH = 1020;
|
||||
public static final double MIN_WINDOW_HEIGHT = 620;
|
||||
public static final double MAX_POPUP_HEIGHT = 730;
|
||||
public static final double FIRST_ROW_DISTANCE = 20d;
|
||||
public static final double COMPACT_FIRST_ROW_DISTANCE = 10d;
|
||||
public static final double TWICE_FIRST_ROW_DISTANCE = 20d * 2;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue