Add padding to description, if model is recording
This commit is contained in:
parent
8b7bb79d8c
commit
2a3e9c0634
|
@ -118,7 +118,10 @@ public class ThumbCell extends StackPane {
|
||||||
StackPane.setAlignment(name, Pos.BOTTOM_CENTER);
|
StackPane.setAlignment(name, Pos.BOTTOM_CENTER);
|
||||||
getChildren().add(name);
|
getChildren().add(name);
|
||||||
|
|
||||||
topic = new Text(model.getDescription());
|
topic = new Text();
|
||||||
|
String txt = recording ? " " : "";
|
||||||
|
txt += model.getDescription();
|
||||||
|
topic.setText(txt);
|
||||||
|
|
||||||
topic.setFill(Color.WHITE);
|
topic.setFill(Color.WHITE);
|
||||||
topic.setFont(new Font("Sansserif", 13));
|
topic.setFont(new Font("Sansserif", 13));
|
||||||
|
|
Loading…
Reference in New Issue