Skip to content

Commit e171c6e

Browse files
committed
added license to About Page
1 parent 0f87f3d commit e171c6e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/de/doubleslash/keeptime/view/AboutController.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ public ObservableList<LicenseTableRow> loadLicenseRows() {
140140
licenseRows.add(new LicenseTableRow("spring-boot-starter-data-jpa", Licenses.APACHEV2));
141141
licenseRows.add(new LicenseTableRow("mockito-core", Licenses.MIT));
142142
licenseRows.add(new LicenseTableRow("h2", Licenses.EPLV1));
143+
licenseRows.add(new LicenseTableRow("fontawesomefx", Licenses.APACHEV2));
143144

144145
licenseRows.sort(Comparator.comparing(LicenseTableRow::getName));
145146

@@ -154,7 +155,7 @@ private void showLicense(final Licenses license) {
154155
alert.setContentText(String.format(
155156
"We could not find the license file at \"%s\". Did you remove it?%nPlease redownload or visit \"%s\".",
156157
license.getPath(), license.getUrl()));
157-
158+
158159
alert.getDialogPane().setMinHeight(Region.USE_PREF_SIZE);
159160

160161
alert.show();

0 commit comments

Comments
 (0)