Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 06 May 2021 23:05:58 +0000
From:      bugzilla-noreply@freebsd.org
To:        chromium@FreeBSD.org
Subject:   [Bug 255128] www/chromium: Can't select links in dropdown menus in 89.0.4389.128
Message-ID:  <bug-255128-28929-QcqtPWy7UW@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-255128-28929@https.bugs.freebsd.org/bugzilla/>
References:  <bug-255128-28929@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D255128

--- Comment #15 from Felix Palmen <felix@palmen-it.de> ---
(In reply to Craig Leres from comment #12)

> basically if XGetWMHints() doesn't return hints create synthetic hints.

Unfortunately, this doesn't change anything. Added this minimal change to f=
vwm3
1.0.2 code:

--- fvwm/add_window.c.orig      2021-05-06 22:48:59 UTC
+++ fvwm/add_window.c
@@ -1873,6 +1873,16 @@ void setup_window_name(FvwmWindow *fw)
 void setup_wm_hints(FvwmWindow *fw)
 {
        fw->wmhints =3D XGetWMHints(dpy, FW_W(fw));
+       if (!fw->wmhints)
+       {
+               fw->wmhints =3D XAllocWMHints();
+               if (fw->wmhints)
+               {
+                       fw->wmhints->flags =3D InputHint | StateHint;
+                       fw->wmhints->input =3D True;
+                       fw->wmhints->initial_state =3D NormalState;
+               }
+       }
        set_focus_model(fw);

        return;

with no luck.

Are you sure THIS works in your patched wm?

> Example: Top navigation on www.freebsd.org. E.g. hover on "Documentation",
> move down to "Handbook", click. The menu will just close.

Would really be great to find out why chromium recently has a problem with
fvwm=E2=80=A6

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-255128-28929-QcqtPWy7UW>