mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2025-07-14 23:22:24 +02:00
reduce min window height by 50px
This commit is contained in:
2
drongo
2
drongo
Submodule drongo updated: 93d494fcde...4b682fb3e7
@ -265,7 +265,7 @@ public class AppServices {
|
|||||||
|
|
||||||
stage.setTitle("Sparrow");
|
stage.setTitle("Sparrow");
|
||||||
stage.setMinWidth(650);
|
stage.setMinWidth(650);
|
||||||
stage.setMinHeight(800);
|
stage.setMinHeight(750);
|
||||||
stage.setScene(scene);
|
stage.setScene(scene);
|
||||||
stage.getIcons().add(new Image(MainApp.class.getResourceAsStream("/image/sparrow.png")));
|
stage.getIcons().add(new Image(MainApp.class.getResourceAsStream("/image/sparrow.png")));
|
||||||
|
|
||||||
|
@ -30,8 +30,8 @@ import java.util.*;
|
|||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
public class TransactionDiagram extends GridPane {
|
public class TransactionDiagram extends GridPane {
|
||||||
private static final int MAX_UTXOS = 8;
|
private static final int MAX_UTXOS = 7;
|
||||||
private static final int MAX_PAYMENTS = 6;
|
private static final int MAX_PAYMENTS = 5;
|
||||||
private static final double DIAGRAM_HEIGHT = 230.0;
|
private static final double DIAGRAM_HEIGHT = 230.0;
|
||||||
private static final int TOOLTIP_SHOW_DELAY = 50;
|
private static final int TOOLTIP_SHOW_DELAY = 50;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user