We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62ed1b7 commit 48d510aCopy full SHA for 48d510a
src/main/java/de/doubleslash/keeptime/view/AboutController.java
@@ -39,6 +39,7 @@
39
import javafx.scene.control.TableView;
40
import javafx.scene.control.cell.PropertyValueFactory;
41
import javafx.scene.input.MouseButton;
42
+import javafx.scene.layout.Region;
43
import javafx.scene.paint.Color;
44
45
public class AboutController {
@@ -153,6 +154,8 @@ private void showLicense(final Licenses license) {
153
154
alert.setContentText(String.format(
155
"We could not find the license file at \"%s\". Did you remove it?%nPlease redownload or visit \"%s\".",
156
license.getPath(), license.getUrl()));
157
+
158
+ alert.getDialogPane().setMinHeight(Region.USE_PREF_SIZE);
159
160
alert.show();
161
}
0 commit comments