Fix #45: Fehlender Abstand unterhalb der PDF-Navigationsbuttons

Die Buttons 'Vorherige' und 'Naechste' in der PDF-Vorschau hatten keinen
Abstand nach unten zur Trennlinie/zum Panel-Rand. Padding unten am navBar-
Container (HBox) hinzugefügt, konsistent mit dem Padding oben.

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-04-27 12:47:58 +02:00
parent c3f8103572
commit fb0e9809f6
@@ -175,7 +175,7 @@ public final class PdfPreviewPane {
HBox navBar = new HBox(8, prevButton, pageLabel, nextButton);
navBar.setAlignment(Pos.CENTER);
navBar.setPadding(new Insets(4, 0, 0, 0));
navBar.setPadding(new Insets(4, 0, 4, 0));
root.getChildren().addAll(sectionTitle, viewStack, navBar);
root.setPadding(new Insets(4, 0, 0, 0));