You are not logged in.
I would like to make it so that windows can be dragged by the titlebar only with left mouse button, but not with the right (currently they are draggable with both). Is there a way to achieve this?
Using xfce 4.16.
Last edited by xfce_user_2022 (2022-01-28 01:20:14)
Offline
Hello and welcome.
Don't think that is possible - see: https://docs.xfce.org/xfce/xfwm4/gettin … ve_windows.
Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki | Community | Contribute ---
Offline
Yep. It's hard-coded.
else if (event->button == Button3)
{
XfwmButtonClickType tclick;
tclick = typeOfClick (screen_info, c->window, event, FALSE);
if (tclick == XFWM_BUTTON_DRAG)
{
clientMove (c, event);
}
If you click and drag with the right button, it will start moving the client window.
Remember to edit the subject of your topic to include the [SOLVED] tag once you're satisfied with the answers or have found a solution (in which case, don't forget to share it as well), so that other members of the community can quickly refer to it and save their time. Pretty please!
Offline
[ Generated in 0.013 seconds, 7 queries executed - Memory usage: 524.46 KiB (Peak: 532.06 KiB) ]