Added hint text to input field on RecordedModelsTab

This commit is contained in:
0xboobface 2018-10-23 17:15:52 +02:00
parent 13d731c82a
commit 5b39bf2a3e
1 changed files with 1 additions and 0 deletions

View File

@ -127,6 +127,7 @@ public class RecordedModelsTab extends Tab implements TabSelectionListener {
addModelBox.getChildren().addAll(modelLabel, model, addModelButton);
modelLabel.setPadding(new Insets(5, 0, 0, 0));
model.setPrefWidth(300);
model.setPromptText("e.g. MyFreeCams:ModelName");
BorderPane.setMargin(addModelBox, new Insets(5));
addModelButton.setOnAction((e) -> addModel(e));