Added checkbox to console to set theme universally across all apps

This commit is contained in:
str4d
2012-07-22 06:53:43 +00:00
parent 3c4f1b7814
commit 8e6bade42b
2 changed files with 20 additions and 7 deletions

View File

@@ -17,6 +17,9 @@ public class ConfigUIHelper extends HelperBase {
buf.append("checked=\"checked\" ");
buf.append("value=\"").append(theme).append("\">").append(_(theme)).append("<br>\n");
}
buf.append("<input type=\"checkbox\" name=\"universalTheming\" value=\"1\">")
.append(_("Set theme universally across all apps"))
.append("<br>\n");
return buf.toString();
}