diff options
| author | klm | 1998-03-08 17:27:59 +0000 |
|---|---|---|
| committer | klm | 1998-03-08 17:27:59 +0000 |
| commit | fbd5ac4151b6a8251a33637a06cac493885ed072 (patch) | |
| tree | 5888f11ecae72cc000828888f1f3ae353bd7b0a5 /Mailman/htmlformat.py | |
| parent | 78e423001878fe33fd5a452e6cd51e3a040b10ea (diff) | |
| download | mailman-fbd5ac4151b6a8251a33637a06cac493885ed072.tar.gz mailman-fbd5ac4151b6a8251a33637a06cac493885ed072.tar.zst mailman-fbd5ac4151b6a8251a33637a06cac493885ed072.zip | |
Hmm - in at least one case (bounce options, automatically remove...),
it's much clearer which button goes with which label when the buttons
are on the right. If the other cases, where the labels don't wrap to
a second line, it's not so clear, and still a bit ambiguous sometimes.
Diffstat (limited to 'Mailman/htmlformat.py')
| -rw-r--r-- | Mailman/htmlformat.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/htmlformat.py b/Mailman/htmlformat.py index 2a8b0d175..ce1abba06 100644 --- a/Mailman/htmlformat.py +++ b/Mailman/htmlformat.py @@ -388,11 +388,11 @@ class RadioButtonArray: l = len(self.button_names) for i in range(l): if self.checked == i: - items.append(self.button_names[i]) items.append(RadioButton(self.name, i, 1)) - else: items.append(self.button_names[i]) + else: items.append(RadioButton(self.name, i)) + items.append(self.button_names[i]) if self.horizontal: t.AddRow(items) else: |
