From d3216c18019f818826358b12182a4518f0f3d280 Mon Sep 17 00:00:00 2001 From: bgopi23 Date: Wed, 5 Jun 2024 17:09:56 +0800 Subject: [PATCH] Fix double-whitespace by reducing HBox spacing The spacing attribute for HBox in PersonListCard.fxml is set to '5', causing it to look like a double-whitespace is present in the Person List Card (e.g. 1. John) Let's reduce the spacing attribute of the HBox in PersonListCard.fxml (which determines the spacing between child elements) to 0.5, which seems to produce the desired gap, so that it looks like a single whitespace is present instead of double (e.g. 1. John). --- src/main/resources/view/PersonListCard.fxml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/view/PersonListCard.fxml b/src/main/resources/view/PersonListCard.fxml index f5e812e25..84e09833a 100644 --- a/src/main/resources/view/PersonListCard.fxml +++ b/src/main/resources/view/PersonListCard.fxml @@ -18,7 +18,7 @@ - +