We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa3d650 commit 80e5efaCopy full SHA for 80e5efa
src/chrome/content/code/FennecUI.jsm
@@ -107,9 +107,11 @@ var popupInfo = {
107
this.ruleStatus.push(false);
108
this.rules.push(this.alist.inactive[rule]);
109
} else if (this.alist.breaking.hasOwnProperty(rule)) {
110
- // breaking rules are unchecked and untoggleable
111
- this.ruleItems.push({ label: rule, disabled: true });
112
- this.ruleStatus.push(false);
+ // breaking rules are get a unicode clockwise arrow next to them
+ var ruleLabel = "\u21B7"+rule;
+ var isSelected = this.alist.breaking[rule].active;
113
+ this.ruleItems.push({ label: ruleLabel, selected: isSelected });
114
+ this.ruleStatus.push(isSelected);
115
this.rules.push(this.alist.breaking[rule]);
116
}
117
0 commit comments