meta/later: Remove extra word from trace span description

This used to be the span name. Now that it's the description, repeating
the word Later is not needed.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3417>
This commit is contained in:
Ivan Molodetskikh 2023-11-23 07:55:00 +04:00 committed by Marge Bot
parent 39e3415912
commit 521668202d

View File

@ -96,17 +96,17 @@ later_type_to_string (MetaLaterType when)
switch (when)
{
case META_LATER_RESIZE:
return "Later (resize)";
return "resize";
case META_LATER_CALC_SHOWING:
return "Later (calc-showing)";
return "calc-showing";
case META_LATER_CHECK_FULLSCREEN:
return "Later (check-fullscreen)";
return "check-fullscreen";
case META_LATER_SYNC_STACK:
return "Later (sync-stack)";
return "sync-stack";
case META_LATER_BEFORE_REDRAW:
return "Later (before-redraw)";
return "before-redraw";
case META_LATER_IDLE:
return "Later (idle)";
return "idle";
}
return "unknown";