6977587: GTK L&F: jnlp: java.io.IOException thrown when choosing more than 1 file in the dialog

Reviewed-by: alexp
This commit is contained in:
Pavel Porvatov 2011-06-04 01:13:04 +04:00
parent c6f97c9462
commit b7c5605096

@ -174,8 +174,11 @@ class GTKFileChooserUI extends SynthFileChooserUI {
// construct the resulting string
for (int i=0; i<len; i++) {
if (i > 0) {
buf.append(" ");
}
if (len > 1) {
buf.append(" \"");
buf.append("\"");
}
buf.append(result.get(i));
if (len > 1) {