fixed name clash of 'promptLayer'

This commit is contained in:
Peter Mucha 2018-07-04 08:48:17 +02:00
parent 6a6bd5ee79
commit 59bf1e586a
2 changed files with 4 additions and 4 deletions

View file

@ -24,7 +24,7 @@ import javafx.scene.layout.VBox;
public abstract class AbstractSearchablePaneController<T> implements Initializable {
@FXML
private StackPane promptLayer, searchLayer, searchFailedLayer;
private StackPane searchPromptLayer, searchLayer, searchFailedLayer;
@FXML
private JFXButton clearSearchFieldButton;
@ -99,7 +99,7 @@ public abstract class AbstractSearchablePaneController<T> implements Initializab
try {
List<T> entries = entryLoader.get();
if (entries.size() == 0) {
promptLayer.setVisible(true);
searchPromptLayer.setVisible(true);
return;
}
@ -127,7 +127,7 @@ public abstract class AbstractSearchablePaneController<T> implements Initializab
}
private Searchable<T> appendToList(T state, VBox layer, boolean appendToStart) {
promptLayer.setVisible(false);
searchPromptLayer.setVisible(false);
try {
SearchEntry<T> searchEntry = createEntryFromState(state);

View file

@ -77,7 +77,7 @@
</VBox>
</content>
</ScrollPane>
<StackPane fx:id="promptLayer">
<StackPane fx:id="searchPromptLayer">
<children>
<Label text="YOUR REQUESTS HISTORY WILL APPEAR HERE"
textAlignment="CENTER" textFill="#575757" wrapText="true">