mirror of
https://github.com/brl/mutter.git
synced 2024-11-10 07:56:14 -05:00
backends/native: Check whether views are scaled via MetaViewportInfo
The input thread is in deep water doing the meta_is_*() check itself, as that pokes the MetaMonitorManager managed by the main thread. Use the getter from the MetaViewportInfo instead. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1793>
This commit is contained in:
parent
24dbfbfcf2
commit
f92232ae4f
@ -1179,13 +1179,14 @@ meta_seat_impl_filter_relative_motion (MetaSeatImpl *seat_impl,
|
||||
float *dx,
|
||||
float *dy)
|
||||
{
|
||||
int view = -1, dest_view;
|
||||
int view, dest_view;
|
||||
float new_dx, new_dy, scale;
|
||||
|
||||
if (meta_is_stage_views_scaled ())
|
||||
if (!seat_impl->viewports)
|
||||
return;
|
||||
if (meta_viewport_info_is_views_scaled (seat_impl->viewports))
|
||||
return;
|
||||
|
||||
if (seat_impl->viewports)
|
||||
view = meta_viewport_info_get_view_at (seat_impl->viewports, x, y);
|
||||
if (view < 0)
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user