Skip to content

Make sure we refresh the patch notes for jME version #485

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ public void ancestorAdded(AncestorEvent event) {
if (selection != null && jmeVersionsInitialized) {
jmeVersionComboBox.setSelectedItem(selection);
}
jmeVersionChanged();

jmeVersionsInitialized = true;
}
Expand All @@ -115,6 +116,10 @@ public void ancestorMoved(AncestorEvent event) {
loadPatchNotes();
updateLWJGLdescription();
}

private void jmeVersionChanged() {
loadPatchNotes();
}

private void additionalComponentConfiguration() {
// Set the JME Version text pane to use system fonts so it displays
Expand Down Expand Up @@ -278,7 +283,7 @@ private void lwjglComboBoxActionPerformed(ActionEvent evt) {//GEN-FIRST:event_lw
}//GEN-LAST:event_lwjglComboBoxActionPerformed

private void jmeVersionComboBoxActionPerformed(ActionEvent evt) {//GEN-FIRST:event_jmeVersionComboBoxActionPerformed
loadPatchNotes();
jmeVersionChanged();
}//GEN-LAST:event_jmeVersionComboBoxActionPerformed

// Variables declaration - do not modify//GEN-BEGIN:variables
Expand Down