Add padding to description, if model is recording

This commit is contained in:
0xboobface 2018-11-07 17:22:19 +01:00
parent 8b7bb79d8c
commit 2a3e9c0634
1 changed files with 4 additions and 1 deletions

View File

@ -118,7 +118,10 @@ public class ThumbCell extends StackPane {
StackPane.setAlignment(name, Pos.BOTTOM_CENTER);
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.setFont(new Font("Sansserif", 13));