From a4d24c61bada652011777e91dd5c788e874d48f0 Mon Sep 17 00:00:00 2001 From: z3d Date: Wed, 29 Sep 2010 02:09:05 +0000 Subject: [PATCH] I2PSnark: Tweak the size of our writeable fields in add/create sections for better visual coherence. --- .../java/src/org/klomp/snark/web/I2PSnarkServlet.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/i2psnark/java/src/org/klomp/snark/web/I2PSnarkServlet.java b/apps/i2psnark/java/src/org/klomp/snark/web/I2PSnarkServlet.java index d1367a4eff..9a291c89f9 100644 --- a/apps/i2psnark/java/src/org/klomp/snark/web/I2PSnarkServlet.java +++ b/apps/i2psnark/java/src/org/klomp/snark/web/I2PSnarkServlet.java @@ -761,7 +761,7 @@ public class I2PSnarkServlet extends Default { out.write("\n\t"); out.write(""); if (remaining > 0) - out.write(formatSize(total-remaining) + " / " + formatSize(total)); // 18MB/3GB + out.write("" + formatSize(total-remaining) + " /" + formatSize(total)); // 18MB/3GB else out.write(formatSize(total)); // 3GB out.write("\n\t"); @@ -927,7 +927,7 @@ public class I2PSnarkServlet extends Default { out.write(_("Add Torrent")); out.write("
\n
"); out.write(_("From URL")); - out.write(": \n"); + out.write(": \n"); // not supporting from file at the moment, since the file name passed isn't always absolute (so it may not resolve) //out.write("From file:
"); out.write("
\n"); out.write(_("Data to seed")); out.write(":
" + _manager.getDataDir().getAbsolutePath() + File.separatorChar - + "
\n"); @@ -980,7 +980,7 @@ public class I2PSnarkServlet extends Default { } out.write("\n"); out.write(_("or ")); - out.write(" ");