ecore-x - fix netwm moveresize request to send to the right window

e handles this but other wm's don't ... fic to send to root

@fix
This commit is contained in:
Carsten Haitzler 2022-03-08 11:58:00 +00:00
parent ac6734d217
commit 107b19d427
2 changed files with 7 additions and 2 deletions

View File

@ -1636,7 +1636,7 @@ ecore_x_netwm_moveresize_request_send(Ecore_X_Window win,
xev.xclient.data.l[3] = button;
xev.xclient.data.l[4] = 1;
XSendEvent(_ecore_x_disp, win, False,
XSendEvent(_ecore_x_disp, DefaultRootWindow(_ecore_x_disp), False,
SubstructureNotifyMask | SubstructureRedirectMask, &xev);
if (_ecore_xlib_sync) ecore_x_sync();
}

View File

@ -3712,8 +3712,13 @@ _elm_win_xwin_update(Efl_Ui_Win_Data *sd)
sd->wm_rot.preferred_rot);
#ifdef HAVE_ELEMENTARY_X
const char *engine_name = ecore_evas_engine_name_get(sd->ee);
if (engine_name) _elm_win_need_frame_adjust(sd, engine_name);
if (sd->csd.need && sd->x.xwin)
{
TRAP(sd, borderless_set, EINA_TRUE);
ecore_x_mwm_borderless_set(sd->x.xwin, EINA_TRUE);
}
#endif
}