-
Bug
-
Resolution: Not an Issue
-
P4
-
8u5
-
Win 7 x64 jdk 8_u5
Hey,
when I put a long label with text wrap enabled inside a TitledPane and then wrap the TitledPane inside a VBox, the TitledPane does not wrap the label text at all.
Some example code:
public class TitledPaneBug extends Application
{
@Override
public void start(final Stage primaryStage) throws Exception
{
final Label label = new Label("a label with some long text that should make sure that the text is really wrapped");
label.setWrapText(true);
final TitledPane pane = new TitledPane();
pane.setContent(label);
final VBox box = new VBox(pane);
box.setMaxWidth(200);
primaryStage.setScene(new Scene(box));
// uncomment this line and comment out the three lines above for the
// expected behaviour
// primaryStage.setScene(new Scene(pane));
primaryStage.setWidth(200);
primaryStage.setHeight(100);
primaryStage.show();
}
public static void main(final String... args)
{
launch(args);
}
}
when I put a long label with text wrap enabled inside a TitledPane and then wrap the TitledPane inside a VBox, the TitledPane does not wrap the label text at all.
Some example code:
public class TitledPaneBug extends Application
{
@Override
public void start(final Stage primaryStage) throws Exception
{
final Label label = new Label("a label with some long text that should make sure that the text is really wrapped");
label.setWrapText(true);
final TitledPane pane = new TitledPane();
pane.setContent(label);
final VBox box = new VBox(pane);
box.setMaxWidth(200);
primaryStage.setScene(new Scene(box));
// uncomment this line and comment out the three lines above for the
// expected behaviour
// primaryStage.setScene(new Scene(pane));
primaryStage.setWidth(200);
primaryStage.setHeight(100);
primaryStage.show();
}
public static void main(final String... args)
{
launch(args);
}
}