From 503d8df72b286ac1b78a61b9d448c40752dbb26e Mon Sep 17 00:00:00 2001 From: PrivateLalle <29478339+LalleSX@users.noreply.github.com> Date: Fri, 3 Feb 2023 21:49:42 +0000 Subject: [PATCH] Fix issue with right click in window managers Mousebros... This issue might disappear over time as more packages are installed, but i had this issue when i first installed LARBS and this fixed it. Also mentioned in the arch wiki: https://wiki.archlinux.org/title/firefox#Right_mouse_button_instantly_clicks_the_first_option_in_window_managers --- .config/firefox/larbs.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/firefox/larbs.js b/.config/firefox/larbs.js index d0d0d5c1..bb2872bc 100644 --- a/.config/firefox/larbs.js +++ b/.config/firefox/larbs.js @@ -42,3 +42,6 @@ user_pref("network.http.referer.XOriginPolicy", 0); // Disable Firefox sync and its menu entries user_pref("identity.fxaccounts.enabled", false); + +// Fix the issue where right mouse button instantly clicks. +user_pref("ui.context_menus.after_mouseup", true);