summaryrefslogtreecommitdiffstats
path: root/application/palemoon/components/preferences/main.xul
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@gmail.com>2018-09-07 02:41:04 +0200
committerwolfbeast <mcwerewolf@gmail.com>2018-09-07 02:41:04 +0200
commitd31ab5ff448c6070e04d8913ebeeacfd295c680c (patch)
tree56d56b0a5f30a1faad19f47ae936445b625f0f34 /application/palemoon/components/preferences/main.xul
parent871530bfe347486cc04653d722040675e8a6f53a (diff)
parent6c4be625921e2974ea230817f882f1a36f55b688 (diff)
downloadUXP-d31ab5ff448c6070e04d8913ebeeacfd295c680c.tar
UXP-d31ab5ff448c6070e04d8913ebeeacfd295c680c.tar.gz
UXP-d31ab5ff448c6070e04d8913ebeeacfd295c680c.tar.lz
UXP-d31ab5ff448c6070e04d8913ebeeacfd295c680c.tar.xz
UXP-d31ab5ff448c6070e04d8913ebeeacfd295c680c.zip
Merge branch 'master' of https://github.com/MoonchildProductions/UXP
Diffstat (limited to 'application/palemoon/components/preferences/main.xul')
-rw-r--r--application/palemoon/components/preferences/main.xul7
1 files changed, 4 insertions, 3 deletions
diff --git a/application/palemoon/components/preferences/main.xul b/application/palemoon/components/preferences/main.xul
index 7634056eb..bb51947b0 100644
--- a/application/palemoon/components/preferences/main.xul
+++ b/application/palemoon/components/preferences/main.xul
@@ -96,6 +96,7 @@
type="autocomplete" autocompletesearch="history"
onsyncfrompreference="return gMainPane.syncFromHomePref();"
onsynctopreference="return gMainPane.syncToHomePref(this.value);"
+ oninput="gNewtabUrl.writeNewtabUrl(null, this.value);"
placeholder="&abouthome.pageTitle;"
preference="browser.startup.homepage"/>
</hbox>
@@ -103,15 +104,15 @@
<button label="" accesskey="&useCurrentPage.accesskey;"
label1="&useCurrentPage.label;"
label2="&useMultiple.label;"
- oncommand="gMainPane.setHomePageToCurrent();"
+ oncommand="gMainPane.setHomePageToCurrent(); gNewtabUrl.writeNewtabUrl();"
id="useCurrent"
preference="pref.browser.homepage.disable_button.current_page"/>
<button label="&chooseBookmark.label;" accesskey="&chooseBookmark.accesskey;"
- oncommand="gMainPane.setHomePageToBookmark();"
+ oncommand="gMainPane.setHomePageToBookmark(); gNewtabUrl.writeNewtabUrl();"
id="useBookmark"
preference="pref.browser.homepage.disable_button.bookmark_page"/>
<button label="&restoreDefault.label;" accesskey="&restoreDefault.accesskey;"
- oncommand="gMainPane.restoreDefaultHomePage();"
+ oncommand="gMainPane.restoreDefaultHomePage(); gNewtabUrl.writeNewtabUrl();"
id="restoreDefaultHomePage"
preference="pref.browser.homepage.disable_button.restore_default"/>
</hbox>