Skip to content

Commit

Permalink
Clarify debug session behaviour
Browse files Browse the repository at this point in the history
  • Loading branch information
PyvesB committed Sep 29, 2020
1 parent 99e1d5a commit f6b0d9d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ private void displayNotFoundWarning() {
display.asyncExec(() -> {
MessageDialog dialog = new MessageDialog(display.getActiveShell(), "Readapt was not found", null,
"Readapt is required for debugging. Let Eclipse install the gem locally or specify its path "
+ "after running \"gem install readapt\" in a terminal.",
+ "after running \"gem install readapt\" in a terminal." + System.lineSeparator()
+ System.lineSeparator() + "Please restart the debug session once installation is complete.",
MessageDialog.WARNING, 0, "Install gem", "Specify path");
if (dialog.open() == 0) { // First button index, install.
GemHelper.install("Readapt", READAPT_PATH);
Expand Down

0 comments on commit f6b0d9d

Please sign in to comment.