mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2025-11-05 11:56:37 +00:00
make wallet summary table grow horizontally with dialog sizing
This commit is contained in:
parent
d4a1441d65
commit
892885c0b1
1 changed files with 2 additions and 0 deletions
|
|
@ -17,6 +17,7 @@ import javafx.scene.control.*;
|
|||
import javafx.scene.image.Image;
|
||||
import javafx.scene.image.ImageView;
|
||||
import javafx.scene.layout.HBox;
|
||||
import javafx.scene.layout.Priority;
|
||||
import javafx.scene.layout.VBox;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
|
@ -103,6 +104,7 @@ public class WalletSummaryDialog extends Dialog<Void> {
|
|||
vBox.getChildren().add(table);
|
||||
|
||||
hBox.getChildren().add(vBox);
|
||||
HBox.setHgrow(vBox, Priority.ALWAYS);
|
||||
|
||||
Wallet balanceWallet;
|
||||
if(allOpenWallets) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue