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 4c18896 commit 9f9a7d6Copy full SHA for 9f9a7d6
src/com/ss/editor/ui/control/model/property/DefaultModelPropertyControl.java
@@ -4,6 +4,7 @@
4
5
import java.util.function.Function;
6
7
+import javafx.geometry.Pos;
8
import javafx.scene.control.Label;
9
import javafx.scene.layout.HBox;
10
import rlib.ui.util.FXUtils;
@@ -55,6 +56,7 @@ protected void createComponents(final HBox container) {
55
56
super.createComponents(container);
57
58
propertyValueLabel = new Label();
59
+ propertyValueLabel.setAlignment(Pos.CENTER);
60
61
FXUtils.addClassTo(propertyValueLabel, CSSClasses.MAIN_FONT_13);
62
FXUtils.addToPane(propertyValueLabel, container);
0 commit comments