Search in sources :

Example 1 with TrayManager

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();
}
Also used : TrayManager(com.sparrowwallet.sparrow.control.TrayManager)

Aggregations

TrayManager (com.sparrowwallet.sparrow.control.TrayManager)1