blob: 9b01095d2ad8a2989f39b2c900bd3422b2541bde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package market.guess.ui.desktop.controllers;
import javafx.fxml.FXML;
import market.guess.ui.desktop.components.graphic.MarketChart;
public class EmptyStateController {
@FXML private MarketChart marketChart;
public void setAnimating(boolean animating) {
if (marketChart != null) {
marketChart.setPlaying(animating);
}
}
}
|