2024-11-27 16:08:40 -05:00
|
|
|
diff --git a/browser/base/content/navigator-toolbox.inc.xhtml b/browser/base/content/navigator-toolbox.inc.xhtml
|
|
|
|
index eb2d8670874b..e57694a72bd3 100644
|
2022-12-14 07:33:59 -05:00
|
|
|
--- a/browser/base/content/navigator-toolbox.inc.xhtml
|
|
|
|
+++ b/browser/base/content/navigator-toolbox.inc.xhtml
|
2024-11-27 16:08:40 -05:00
|
|
|
@@ -35,14 +35,6 @@
|
|
|
|
<hbox flex="1" align="end" class="toolbar-items">
|
|
|
|
<toolbartabstop/>
|
|
|
|
<hbox id="TabsToolbar-customization-target" flex="1">
|
|
|
|
- <toolbarbutton id="firefox-view-button"
|
|
|
|
- class="toolbarbutton-1 chromeclass-toolbar-additional"
|
|
|
|
- data-l10n-id="toolbar-button-firefox-view-2"
|
|
|
|
- role="button"
|
|
|
|
- aria-pressed="false"
|
|
|
|
- cui-areatype="toolbar"
|
|
|
|
- removable="true"/>
|
2022-12-14 07:33:59 -05:00
|
|
|
-
|
2024-11-27 16:08:40 -05:00
|
|
|
<tabs id="tabbrowser-tabs"
|
|
|
|
is="tabbrowser-tabs"
|
|
|
|
aria-multiselectable="true"
|
|
|
|
@@ -667,5 +659,13 @@
|
2022-12-14 07:33:59 -05:00
|
|
|
closemenu="none"
|
|
|
|
cui-areatype="toolbar"
|
|
|
|
data-l10n-id="navbar-library"/>
|
|
|
|
+
|
|
|
|
+ <toolbarbutton id="firefox-view-button"
|
|
|
|
+ class="toolbarbutton-1 chromeclass-toolbar-additional"
|
2023-10-27 02:45:04 -05:00
|
|
|
+ data-l10n-id="toolbar-button-firefox-view-2"
|
2022-12-14 07:33:59 -05:00
|
|
|
+ role="button"
|
|
|
|
+ aria-pressed="false"
|
|
|
|
+ cui-areatype="toolbar"
|
|
|
|
+ removable="true"/>
|
|
|
|
</html:template>
|
|
|
|
</toolbox>
|
2024-11-27 16:08:40 -05:00
|
|
|
diff --git a/browser/components/customizableui/CustomizableUI.sys.mjs b/browser/components/customizableui/CustomizableUI.sys.mjs
|
|
|
|
index 45d0e0e4872e..4ed336da6bb5 100644
|
2023-07-05 09:24:28 -05:00
|
|
|
--- a/browser/components/customizableui/CustomizableUI.sys.mjs
|
|
|
|
+++ b/browser/components/customizableui/CustomizableUI.sys.mjs
|
2024-11-27 16:08:40 -05:00
|
|
|
@@ -347,7 +347,6 @@ var CustomizableUIInternal = {
|
2022-10-20 17:49:50 -05:00
|
|
|
{
|
|
|
|
type: CustomizableUI.TYPE_TOOLBAR,
|
|
|
|
defaultPlacements: [
|
|
|
|
- "firefox-view-button",
|
|
|
|
"tabbrowser-tabs",
|
|
|
|
"new-tab-button",
|
|
|
|
"alltabs-button",
|
2024-11-27 16:08:40 -05:00
|
|
|
@@ -707,18 +706,6 @@ var CustomizableUIInternal = {
|
2022-10-20 17:49:50 -05:00
|
|
|
}
|
|
|
|
}
|
2023-03-15 06:10:20 -05:00
|
|
|
|
2022-10-20 17:49:50 -05:00
|
|
|
- // Add firefox-view if not present
|
|
|
|
- if (currentVersion < 18) {
|
|
|
|
- let tabstripPlacements =
|
|
|
|
- gSavedState.placements[CustomizableUI.AREA_TABSTRIP];
|
|
|
|
- if (
|
|
|
|
- tabstripPlacements &&
|
|
|
|
- !tabstripPlacements.includes("firefox-view-button")
|
|
|
|
- ) {
|
|
|
|
- tabstripPlacements.unshift("firefox-view-button");
|
|
|
|
- }
|
|
|
|
- }
|
2023-03-15 06:10:20 -05:00
|
|
|
-
|
|
|
|
// Unified Extensions addon button migration, which puts any browser action
|
|
|
|
// buttons in the overflow menu into the addons panel instead.
|
|
|
|
if (currentVersion < 19) {
|