From 6023ac97c264fd2939b25125dce9f103c2624a15 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Mon, 17 Feb 2020 22:36:00 +0100 Subject: [PATCH] firefox: don't allow detaching a tab by pulling it --- firefox.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/firefox.js b/firefox.js index 6ad5da2..2f3e301 100644 --- a/firefox.js +++ b/firefox.js @@ -26,6 +26,8 @@ user_pref("browser.backspace_action", 0); // Ctrl-Tab should not use recent order (it's confusing for me) user_pref("browser.ctrlTab.recentlyUsedOrder", false); +// Don't allow detaching a tab by pulling it (I use the menu) +user_pref("browser.tabs.allowTabDetach", false); // Don't display fullscreen warning user_pref("full-screen-api.warning.timeout", 0);