firefox: don't allow detaching a tab by pulling it

This commit is contained in:
Vincent Bernat 2020-02-17 22:36:00 +01:00
parent baed5697b7
commit 6023ac97c2

View file

@ -26,6 +26,8 @@ user_pref("browser.backspace_action", 0);
// Ctrl-Tab should not use recent order (it's confusing for me) // Ctrl-Tab should not use recent order (it's confusing for me)
user_pref("browser.ctrlTab.recentlyUsedOrder", false); 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 // Don't display fullscreen warning
user_pref("full-screen-api.warning.timeout", 0); user_pref("full-screen-api.warning.timeout", 0);