Simon Waldman wrote:
> After all, it can be done from Newsgroup: so it can't be too hard to
> do the same for another header.
The code is in line 797 of addressingWidgetOverlay.js; the addr_other
needs to be added as a separate condition. IMHO the code is ugly and
could do with cleanup anyway, either
switch (selectElem.value) {
case 'addr_newsgroups':
case 'addr_followup':
case 'addr_other':
inputElem.disableAutocomplete = false;
break;
default:
inputElem.disableAutocomplete = true;
break;
}
or
inputElem.disableAutocomplete = selectElem.value == 'addr_newsgroups' ||
selectElem.value == 'addr_followup' || selectElem.value == 'addr_other';
--
Warning: May contain traces of nuts.