fix ellipses in settings

This commit is contained in:
woodser 2025-05-08 09:21:47 -04:00
parent 4e2f743862
commit ff7e853cac
No known key found for this signature in database
GPG key ID: 55A10DD48ADEE5EF

View file

@ -361,7 +361,7 @@ public class FormBuilder {
textField.setPrefWidth(Layout.INITIAL_WINDOW_WIDTH);
Button button = new AutoTooltipButton("...");
button.setStyle("-fx-min-width: 26; -fx-pref-height: 26; -fx-padding: 0 0 10 0; -fx-background-color: -fx-background;");
button.setStyle("-fx-min-width: 32; -fx-padding: 0 0 10 0; -fx-background-color: -fx-background;");
button.managedProperty().bind(button.visibleProperty());
HBox hbox = new HBox(textField, button);