Skip to content

Commit

Permalink
Fire the correct property in Product#setIncludeJre
Browse files Browse the repository at this point in the history
The property should be P_INCLUDE_JRE not P_INCLUDE_LAUNCHERS

See eclipse-pde#1278
  • Loading branch information
Phillipus authored and HannesWell committed May 31, 2024
1 parent 9648456 commit d92416a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -900,7 +900,7 @@ public void setIncludeJre(boolean include) {
boolean old = fIncludeJre;
fIncludeJre = include;
if (isEditable()) {
firePropertyChanged(P_INCLUDE_LAUNCHERS, Boolean.toString(old), Boolean.toString(fIncludeJre));
firePropertyChanged(P_INCLUDE_JRE, Boolean.toString(old), Boolean.toString(fIncludeJre));
}

}
Expand Down

0 comments on commit d92416a

Please sign in to comment.