Cross-JDK fixes
This commit is contained in:
parent
e7092799b6
commit
2f80cc1898
@ -44,7 +44,7 @@ public class ListNote extends Note
|
||||
VBox box = new VBox();
|
||||
box.setFillWidth(true);
|
||||
|
||||
TextField nameField = new TextField();
|
||||
final TextField nameField = new TextField();
|
||||
|
||||
HBox titleBox = new HBox();
|
||||
{
|
||||
|
@ -37,7 +37,7 @@ public class TextNote extends Note
|
||||
VBox box = new VBox();
|
||||
box.setFillWidth(true);
|
||||
|
||||
TextField nameField = new TextField();
|
||||
final TextField nameField = new TextField();
|
||||
|
||||
HBox titleBox = new HBox();
|
||||
{
|
||||
@ -100,7 +100,7 @@ public class TextNote extends Note
|
||||
}
|
||||
box.getChildren().add(nameField);
|
||||
|
||||
TextArea textArea = new TextArea();
|
||||
final TextArea textArea = new TextArea();
|
||||
{
|
||||
textArea.setId("text");
|
||||
textArea.setWrapText(true);
|
||||
|
Loading…
Reference in New Issue
Block a user