clutter/actor: Remove superfluous line

This sets exactly the same thing as the line above and doesn't
manipulate any parts of the calculation, too, it's most likely a very
old copy-paste mistake, remove it.

Thanks to Rafał Mikrut for discovering it.

Fixes https://gitlab.gnome.org/GNOME/mutter/-/issues/1222

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1660>
This commit is contained in:
Jonas Dreßler 2020-12-31 10:14:44 +01:00
parent 65e7b9ae3a
commit 189eb4c7a7

View File

@ -13428,7 +13428,6 @@ clutter_actor_transform_stage_point (ClutterActor *self,
RQ[0][2] = DET (px, dx2, py, dy2) / det;
RQ[1][2] = DET (dx1, px, dy1, py) / det;
RQ[1][2] = DET (dx1, px, dy1, py) / det;
RQ[2][2] = 1.0;
RQ[0][0] = v[1].x - v[0].x + (RQ[0][2] * v[1].x);
RQ[1][0] = v[2].x - v[0].x + (RQ[1][2] * v[2].x);