mirror of
https://github.com/brl/mutter.git
synced 2024-12-26 04:42:14 +00:00
clutter/actor: Set a minimum guessed scale
When running headlessly it fails guessing the scale to -1.0f making the assertion g_assert (guessed_scale >= 0.5) fail. Setting it to 1.f in that case fixes it. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3464>
This commit is contained in:
parent
4c6216e8a3
commit
3a94822e75
@ -14666,6 +14666,9 @@ clutter_actor_get_real_resource_scale (ClutterActor *self)
|
||||
max_scale = MAX (clutter_stage_view_get_scale (view), max_scale);
|
||||
}
|
||||
|
||||
if (max_scale < 0.f)
|
||||
max_scale = 1.f;
|
||||
|
||||
guessed_scale = max_scale;
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user