Fix issue in solution panel.
This commit is contained in:
parent
5d28e12903
commit
2fdaf30510
@ -92,6 +92,17 @@ public class ShortestPathSolutionPanel extends JPanel implements DrawingChangeLi
|
|||||||
oldOverlay.delete();
|
oldOverlay.delete();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* (non-Javadoc)
|
||||||
|
*
|
||||||
|
* @see java.lang.Object#toString()
|
||||||
|
*/
|
||||||
|
public String toString() {
|
||||||
|
return "Shortest-path from #" + this.getData().getOrigin().getId() + " to #"
|
||||||
|
+ this.getData().getDestination().getId() + " [" + this.getData().getMode().toString().toLowerCase()
|
||||||
|
+ "]";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Solution
|
// Solution
|
||||||
@ -186,10 +197,11 @@ public class ShortestPathSolutionPanel extends JPanel implements DrawingChangeLi
|
|||||||
|
|
||||||
ShortestPathBundle bundle = (ShortestPathBundle) solutionSelect.getSelectedItem();
|
ShortestPathBundle bundle = (ShortestPathBundle) solutionSelect.getSelectedItem();
|
||||||
|
|
||||||
if (currentBundle.getOverlay() != null) {
|
if (currentBundle != null && currentBundle.getOverlay() != null) {
|
||||||
currentBundle.getOverlay().setVisible(false);
|
currentBundle.getOverlay().setVisible(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
updateInformationLabel(bundle);
|
||||||
buttonPanel.setVisible(bundle.getSolution().isFeasible());
|
buttonPanel.setVisible(bundle.getSolution().isFeasible());
|
||||||
clearButton.setText(bundle.getSolution().isFeasible() ? "Hide" : "Show");
|
clearButton.setText(bundle.getSolution().isFeasible() ? "Hide" : "Show");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user