Skip to content

Commit

Permalink
Merge pull request #125 from CodeDead/feature/information-dialog-icon…
Browse files Browse the repository at this point in the history
…-fix

feat: fixed an issue with a dialog not displaying the Opal icon
  • Loading branch information
CodeDead authored Jul 16, 2024
2 parents b2c45af + 02bc765 commit 95710d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ private void checkForUpdates(final boolean showNoUpdates, final boolean showErro
} else {
logger.info("No updates available");
if (showNoUpdates) {
FxUtils.showInformationAlert(translationBundle.getString("NoUpdateAvailable"), null);
FxUtils.showInformationAlert(translationBundle.getString("NoUpdateAvailable"), getClass().getResourceAsStream(SharedVariables.ICON_URL));
}
}
} catch (final InterruptedException | IOException | InvalidHttpResponseCodeException | URISyntaxException ex) {
Expand Down

0 comments on commit 95710d6

Please sign in to comment.