reduce min window height by 50px

This commit is contained in:
Craig Raw 2021-01-26 12:19:25 +02:00
parent 8a3aa0d06e
commit 1dbf51b406
3 changed files with 4 additions and 4 deletions

2
drongo

@ -1 +1 @@
Subproject commit 93d494fcde0d6979b2ded2a9d5ebd5d54d58b8ea
Subproject commit 4b682fb3e710c4b2303295fdfde72195854097dc

View file

@ -265,7 +265,7 @@ public class AppServices {
stage.setTitle("Sparrow");
stage.setMinWidth(650);
stage.setMinHeight(800);
stage.setMinHeight(750);
stage.setScene(scene);
stage.getIcons().add(new Image(MainApp.class.getResourceAsStream("/image/sparrow.png")));

View file

@ -30,8 +30,8 @@ import java.util.*;
import java.util.stream.Collectors;
public class TransactionDiagram extends GridPane {
private static final int MAX_UTXOS = 8;
private static final int MAX_PAYMENTS = 6;
private static final int MAX_UTXOS = 7;
private static final int MAX_PAYMENTS = 5;
private static final double DIAGRAM_HEIGHT = 230.0;
private static final int TOOLTIP_SHOW_DELAY = 50;