1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-29 00:31:01 -08:00

* src/xterm.c (handle_one_xevent): Remove obsolete workaround.

This commit is contained in:
Po Lu 2022-01-28 10:51:33 +08:00
parent 47b7ec2a3d
commit bc404cd8ea

View file

@ -10395,14 +10395,7 @@ handle_one_xevent (struct x_display_info *dpyinfo,
#ifdef HAVE_XWIDGETS
if (xwidget_view)
{
/* Don't send an enter event to the xwidget if the
first button is pressed, to avoid it releasing
the passive grab. I don't know why that happens,
but this workaround makes dragging to select text
work again. */
if (!(enter->buttons.mask_len
&& XIMaskIsSet (enter->buttons.mask, 1)))
xwidget_motion_or_crossing (xwidget_view, event);
xwidget_motion_or_crossing (xwidget_view, event);
goto XI_OTHER;
}