Skip to content

Commit

Permalink
#1619 Resolves issue where JavaFX window size and placement might sho…
Browse files Browse the repository at this point in the history
…w minimized after application is started and an initial JavaFX window is opened and then closed, where it impacted subsequent JavaFX window openings. Corrects issue where JavaFX stage monitors were not being registered correctly, so that they could be deregistered prior to application shutdown.
  • Loading branch information
Dennis Sheirer committed Nov 10, 2023
1 parent b51c807 commit 6187253
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 28 deletions.
22 changes: 1 addition & 21 deletions src/main/java/io/github/dsheirer/gui/JavaFxWindowManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -164,27 +164,7 @@ private void createJFXPanel()
public void shutdown()
{
MyEventBus.getGlobalEventBus().unregister(this);

if(mChannelMapStage != null)
{
mUserPreferences.getJavaFxPreferences().unmonitor(mChannelMapStage);
}

if(mIconManagerStage != null)
{
mUserPreferences.getJavaFxPreferences().unmonitor(mIconManagerStage);
}

if(mPlaylistStage != null)
{
mUserPreferences.getJavaFxPreferences().unmonitor(mPlaylistStage);
}

if(mUserPreferencesStage != null)
{
mUserPreferences.getJavaFxPreferences().unmonitor(mUserPreferencesStage);
}

mUserPreferences.getJavaFxPreferences().clearStageMonitors();
Platform.exit();
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* *****************************************************************************
* Copyright (C) 2014-2020 Dennis Sheirer
* Copyright (C) 2014-2023 Dennis Sheirer
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand All @@ -20,6 +20,10 @@
package io.github.dsheirer.preference.javafx;

import io.github.dsheirer.preference.decoder.JmbeLibraryPreference;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.prefs.Preferences;
import javafx.beans.value.ChangeListener;
import javafx.beans.value.ObservableValue;
import javafx.collections.ObservableList;
Expand All @@ -28,11 +32,6 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.prefs.Preferences;

/**
* Manages user preferences for JavaFX elements (e.g. stages).
*/
Expand All @@ -59,7 +58,7 @@ public JavaFxPreferences()
*/
public void monitor(Stage stage, String key)
{
mStageMonitors.remove(new StageMonitor(stage, key));
mStageMonitors.add(new StageMonitor(stage, key));
}

/**
Expand All @@ -81,6 +80,21 @@ public void unmonitor(Stage stage)
}
}

/**
* Removes all stage monitors and prepares for shutdown.
*/
public void clearStageMonitors()
{
Iterator<StageMonitor> it = mStageMonitors.iterator();

while(it.hasNext())
{
StageMonitor next = it.next();
it.remove();
next.dispose();
}
}

/**
* Monitors a stage's coordinates and stores location. On construction, applies stored coordinates to the stage.
*/
Expand Down

0 comments on commit 6187253

Please sign in to comment.