Selaa lähdekoodia

TextArea needs a prefRowCount, otherwise it attempts to use all available space, displacing other elements.
fixes #1012

Sebastian Stenzel 5 vuotta sitten
vanhempi
commit
28d58922e3
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      main/ui/src/main/resources/fxml/addvault_new_recoverykey.fxml

+ 1 - 1
main/ui/src/main/resources/fxml/addvault_new_recoverykey.fxml

@@ -23,7 +23,7 @@
 
 		<Label text="%addvaultwizard.new.recoveryKeyInstruction" wrapText="true"/>
 
-		<TextArea editable="false" text="${controller.recoveryKey}" wrapText="true"/>
+		<TextArea editable="false" text="${controller.recoveryKey}" wrapText="true" prefRowCount="6"/>
 
 		<CheckBox fx:id="finalConfirmationCheckbox" text="%addvaultwizard.new.recoveryKeySavedCheckbox" wrapText="true"/>