mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-05 05:46:44 +00:00
fix text width issue with overlay on linux
This commit is contained in:
parent
0f639dc2c2
commit
3a853e2ab1
1 changed files with 1 additions and 1 deletions
|
@ -312,7 +312,7 @@ public class MnemonicKeystoreImportPane extends TitledDescriptionPane {
|
||||||
|
|
||||||
StackPane wordsPane = (StackPane)getContent();
|
StackPane wordsPane = (StackPane)getContent();
|
||||||
StackPane confirmPane = new StackPane();
|
StackPane confirmPane = new StackPane();
|
||||||
confirmPane.setMaxWidth(300);
|
confirmPane.setMaxWidth(350);
|
||||||
confirmPane.setMaxHeight(100);
|
confirmPane.setMaxHeight(100);
|
||||||
Region region = new Region();
|
Region region = new Region();
|
||||||
region.setMinWidth(confirmPane.getMaxWidth());
|
region.setMinWidth(confirmPane.getMaxWidth());
|
||||||
|
|
Loading…
Reference in a new issue