mirror of
https://codeberg.org/librewolf/source.git
synced 2024-12-22 21:53:31 -05:00
29 lines
918 B
Diff
29 lines
918 B
Diff
|
--- a/browser/components/customizableui/CustomizableUI.jsm
|
||
|
+++ b/browser/components/customizableui/CustomizableUI.jsm
|
||
|
@@ -277,7 +277,6 @@ var CustomizableUIInternal = {
|
||
|
{
|
||
|
type: CustomizableUI.TYPE_TOOLBAR,
|
||
|
defaultPlacements: [
|
||
|
- "firefox-view-button",
|
||
|
"tabbrowser-tabs",
|
||
|
"new-tab-button",
|
||
|
"alltabs-button",
|
||
|
@@ -605,18 +604,6 @@ var CustomizableUIInternal = {
|
||
|
navbarPlacements.splice(newPosition, 0, "save-to-pocket-button");
|
||
|
}
|
||
|
}
|
||
|
-
|
||
|
- // 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");
|
||
|
- }
|
||
|
- }
|
||
|
},
|
||
|
|
||
|
_updateForNewProtonVersion() {
|