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:
+1
-1
@@ -175,7 +175,7 @@ public final class PdfPreviewPane {
|
|||||||
|
|
||||||
HBox navBar = new HBox(8, prevButton, pageLabel, nextButton);
|
HBox navBar = new HBox(8, prevButton, pageLabel, nextButton);
|
||||||
navBar.setAlignment(Pos.CENTER);
|
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.getChildren().addAll(sectionTitle, viewStack, navBar);
|
||||||
root.setPadding(new Insets(4, 0, 0, 0));
|
root.setPadding(new Insets(4, 0, 0, 0));
|
||||||
|
|||||||
Reference in New Issue
Block a user