From 513fe9207b561621c3c9377cda7f95f5e0379d8c Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Sat, 24 Apr 2021 10:01:05 +0200 Subject: [PATCH] firefox: don't display "close tab" button --- firefox.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/firefox.js b/firefox.js index 42ee854..bebe1ec 100644 --- a/firefox.js +++ b/firefox.js @@ -41,6 +41,9 @@ user_pref("browser.backspace_action", 0); // Don't allow detaching a tab by pulling it user_pref("browser.tabs.allowTabDetach", false); +// Don't display a close button for tabs +user_pref("browser.tabs.tabClipWidth", 1000); + // Don't display fullscreen warning user_pref("full-screen-api.warning.timeout", 0); user_pref("full-screen-api.transition.timeout", 0);