From 804b27cda85da4eebb6b798ac3c948e4bbb13d54 Mon Sep 17 00:00:00 2001 From: benfry Date: Mon, 30 Nov 2009 16:12:16 +0000 Subject: [PATCH] fix problem with HTML dialogs like the one for the Android SDK --- app/src/processing/app/Base.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index 83659e015..e457a6e06 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -1754,7 +1754,9 @@ public class Base { String primary, String secondary) { if (!Base.isMacOS()) { return JOptionPane.showConfirmDialog(editor, - primary + "\n" + secondary, title, + "" + + "" + primary + "" + + "
" + secondary, title, JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE); } else {