Index: /trunk/src/org/openstreetmap/josm/actions/ShowStatusReportAction.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/actions/ShowStatusReportAction.java	(revision 5832)
+++ /trunk/src/org/openstreetmap/josm/actions/ShowStatusReportAction.java	(revision 5833)
@@ -72,5 +72,5 @@
             List<String> vmArguments = ManagementFactory.getRuntimeMXBean().getInputArguments();
             if (!vmArguments.isEmpty()) {
-                text.append("VM arguments: "+ vmArguments);
+                text.append("VM arguments: "+ vmArguments.toString().replace("\\\\", "\\"));
                 text.append("\n");
             }
@@ -131,8 +131,8 @@
         ed.setButtonIcons(new String[] {"copy.png", "cancel.png" });
         ed.setContent(sp, false);
-        ed.setMinimumSize(new Dimension(500, 0));
-        ed.showDialog();
+        ed.setMinimumSize(new Dimension(380, 200));
+        ed.setPreferredSize(new Dimension(700, Main.parent.getHeight()-50));
 
-        if(ed.getValue() != 1) return;
+        if (ed.showDialog().getValue() != 1) return;
         Utils.copyToClipboard(text.toString());
     }
