use of com.sparrowwallet.sparrow.control.TrayManager in project sparrow by sparrowwallet.
the class AppServices method minimizeStage.
public void minimizeStage(Stage stage) {
if (trayManager == null) {
trayManager = new TrayManager();
}
trayManager.addStage(stage);
stage.hide();
}
Aggregations