1
0
Fork 0

window: Include window title in debug description

Useful to reason about MUTTER_DEBUG=stack logs when using metatests.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3879>
This commit is contained in:
Jonas Ådahl 2024-07-04 11:37:42 +02:00 committed by Sebastian Wick
parent fe60ee8b90
commit 76e044c39d

View file

@ -940,13 +940,16 @@ meta_window_update_desc (MetaWindow *window)
#ifdef HAVE_X11_CLIENT
if (window->client_type == META_WINDOW_CLIENT_TYPE_X11)
window->desc = g_strdup_printf ("0x%lx", meta_window_x11_get_xwindow (window));
window->desc = g_strdup_printf ("0x%lx (%s)",
meta_window_x11_get_xwindow (window),
window->title ? window->title : "[untitled]");
else
#endif
{
guint64 small_stamp = window->stamp - G_GUINT64_CONSTANT (0x100000000);
window->desc = g_strdup_printf ("W%" G_GUINT64_FORMAT, small_stamp);
window->desc = g_strdup_printf ("W%" G_GUINT64_FORMAT " (%s)", small_stamp,
window->title ? window->title : "[untitled]");
}
}