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

This commit is contained in:
zzz
2014-08-09 18:08:00 +00:00
parent 0bacbbc553
commit 22a7757461

View File

@@ -298,9 +298,9 @@ public class ConfigNetHelper extends HelperBase {
StringBuilder buf = new StringBuilder(256);
buf.append("<select style=\"text-align: right !important;\" name=\"sharePercentage\">\n");
boolean found = false;
for (int i = 30; i <= 110; i += 10) {
for (int i = 100; i >= -10; i -= 10) {
int val = i;
if (i == 110) {
if (i == -10) {
if (found)
break;
else