mirror of
https://github.com/brl/mutter.git
synced 2024-11-13 01:36:10 -05:00
wayland: support left click to raise wayland surfaces
This adds support for raising wayland surfaces when clicked with the left mouse button.
This commit is contained in:
parent
a5585327dc
commit
85e66f69fa
@ -347,10 +347,20 @@ handle_button_event (MetaWaylandSeat *seat,
|
|||||||
{
|
{
|
||||||
if (pointer->button_count == 0)
|
if (pointer->button_count == 0)
|
||||||
{
|
{
|
||||||
|
MetaWaylandSurface *surface = pointer->current;
|
||||||
|
|
||||||
pointer->grab_button = button;
|
pointer->grab_button = button;
|
||||||
pointer->grab_time = event->time;
|
pointer->grab_time = event->time;
|
||||||
pointer->grab_x = pointer->x;
|
pointer->grab_x = pointer->x;
|
||||||
pointer->grab_y = pointer->y;
|
pointer->grab_y = pointer->y;
|
||||||
|
|
||||||
|
if (button == BTN_LEFT &&
|
||||||
|
surface &&
|
||||||
|
surface->window &&
|
||||||
|
surface->window->client_type == META_WINDOW_CLIENT_TYPE_WAYLAND)
|
||||||
|
{
|
||||||
|
meta_window_raise (surface->window);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pointer->button_count++;
|
pointer->button_count++;
|
||||||
|
Loading…
Reference in New Issue
Block a user