window: Rename a profiler mark

The "layout" name was already taken for the frame clock
phase by that name. Oops.
This commit is contained in:
Matthias Clasen 2020-01-22 15:10:35 -05:00
parent dfea9bf0e8
commit 119457279b

View File

@ -6316,7 +6316,7 @@ gtk_window_check_resize (GtkWindow *self)
if (gdk_profiler_is_running ())
{
gint64 after = g_get_monotonic_time ();
gdk_profiler_add_mark (before * 1000, (after - before) * 1000, "layout", "");
gdk_profiler_add_mark (before * 1000, (after - before) * 1000, "size allocation", "");
}
}