Fix for bug # 43871. Formerly a nsbeta3+ p1. I had the fixes sitting in my tree for a while.

r=ben


git-svn-id: svn://10.0.0.236/trunk@79306 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
radha%netscape.com
2000-09-15 06:50:31 +00:00
parent 7160bc1727
commit eca2e74b75
2 changed files with 22 additions and 2 deletions

View File

@@ -43,7 +43,7 @@
<script language="JavaScript">
<![CDATA[
_elementIDs = ["browserRelatedDisabledForDomains", "addDomain", "browserGoBrowsingEnabled"];
_elementIDs = ["browserRelatedDisabledForDomains", "addDomain", "browserGoBrowsingEnabled", "browserAutoCompleteEnabled"];
function Startup()
@@ -191,7 +191,7 @@
</columns>
<rows>
<row>
<tree class="inset" id="disabledDomains" multiple="true" onkeyup="treeHandleEvent(event)">
<tree class="inset" id="disabledDomains" multiple="true" onkeyup="treeHandleEvent(event)" style="height: 100px;" flex="1">
<treecolgroup>
<treecol flex="1"/>
</treecolgroup>
@@ -232,5 +232,19 @@
</box>
</titledbox>
<titledbox orient="vertical">
<title><text value="&autoCompleteHeader.label;"/></title>
<html>&autoCompleteDescription.label;</html>
<box autostretch="never">
<checkbox id="browserAutoCompleteEnabled" value="&autoCompleteEnabled.label;" accesskey="&autoCompleteEnabled.accesskey;"
pref="true" preftype="bool" prefstring="browser.urlbar.autocomplete.enabled"
prefattribute="checked"/>
<spring flex="1"/>
</box>
</titledbox>
</window>

View File

@@ -29,3 +29,9 @@
<!--LOCALIZATION NOTE (enableKeyCheck.label): Do not translate 'Internet Keywords' -->
<!ENTITY keywordsEnabled.label "Enable Internet Keywords">
<!ENTITY keywordsEnabled.accesskey "k">
<!ENTITY autoCompleteHeader.label "Urlbar AutoComplete">
<!ENTITY autoCompleteDescription.label "Automatically completes text typed into Location field">
<!ENTITY autoCompleteEnabled.label "Enable Urlbar AutoComplete">
<!ENTITY autoCompleteEnabled.accesskey "c">