mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 23:50:41 -05:00
clutter/stage: Remove ABSOLUTE_ORIGIN_CHANGED flag from debug message
The ABSOLUTE_ORIGIN_CHANGED allocation flag is going to be removed from Clutter, so stop using it for this debug message. https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1245
This commit is contained in:
parent
7ae6e0101c
commit
04e983383f
@ -651,11 +651,8 @@ clutter_stage_allocate (ClutterActor *self,
|
||||
children_box.y2 = box->y2 - box->y1;
|
||||
|
||||
CLUTTER_NOTE (LAYOUT,
|
||||
"Following allocation to %.2fx%.2f (absolute origin %s)",
|
||||
width, height,
|
||||
(flags & CLUTTER_ABSOLUTE_ORIGIN_CHANGED)
|
||||
? "changed"
|
||||
: "not changed");
|
||||
"Following allocation to %.2fx%.2f",
|
||||
width, height);
|
||||
|
||||
clutter_actor_set_allocation (self, box, flags);
|
||||
|
||||
@ -710,12 +707,9 @@ clutter_stage_allocate (ClutterActor *self,
|
||||
|
||||
CLUTTER_NOTE (LAYOUT,
|
||||
"Overriding original allocation of %.2fx%.2f "
|
||||
"with %.2fx%.2f (absolute origin %s)",
|
||||
"with %.2fx%.2f",
|
||||
width, height,
|
||||
override.x2, override.y2,
|
||||
(flags & CLUTTER_ABSOLUTE_ORIGIN_CHANGED)
|
||||
? "changed"
|
||||
: "not changed");
|
||||
override.x2, override.y2);
|
||||
|
||||
/* and store the overridden allocation */
|
||||
clutter_actor_set_allocation (self, &override, flags);
|
||||
|
Loading…
Reference in New Issue
Block a user