소스 검색

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

Sebastian Stenzel 5 년 전
부모
커밋
28d58922e3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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"/>