I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 22a77574 authored by zzz's avatar zzz
Browse files

Console: Show share options below 30% (ticket #1329)

parent 0bacbbc5
No related branches found
No related tags found
No related merge requests found
...@@ -298,9 +298,9 @@ public class ConfigNetHelper extends HelperBase { ...@@ -298,9 +298,9 @@ public class ConfigNetHelper extends HelperBase {
StringBuilder buf = new StringBuilder(256); StringBuilder buf = new StringBuilder(256);
buf.append("<select style=\"text-align: right !important;\" name=\"sharePercentage\">\n"); buf.append("<select style=\"text-align: right !important;\" name=\"sharePercentage\">\n");
boolean found = false; boolean found = false;
for (int i = 30; i <= 110; i += 10) { for (int i = 100; i >= -10; i -= 10) {
int val = i; int val = i;
if (i == 110) { if (i == -10) {
if (found) if (found)
break; break;
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment