Skip to content

Commit 1220f46

Browse files
committed
window-props: Change a warning to a debug message.
XAppStatusIcon creates a dummy GdkWindow at the status icon's position in order to satisfy gtk_menu_popup_at_rect(), but muffin complains because this dummy window shows up as the popup menu's transient parent and isn't recognized. Since this is all necessary to make sure XApp popups show up in the correct place, stop spamming the logs over it. This also affects the systray applet for both tooltips and menus.
1 parent d7d4459 commit 1220f46

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/x11/window-props.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1748,8 +1748,9 @@ reload_transient_for (MetaWindow *window,
17481748
transient_for);
17491749
if (!parent)
17501750
{
1751-
meta_warning ("Invalid WM_TRANSIENT_FOR window 0x%lx specified for %s.\n",
1752-
transient_for, window->desc);
1751+
meta_topic (META_DEBUG_WINDOW_STATE,
1752+
"Invalid WM_TRANSIENT_FOR window 0x%lx specified for %s.\n",
1753+
transient_for, window->desc);
17531754
transient_for = None;
17541755
}
17551756
else if (parent->override_redirect)

0 commit comments

Comments
 (0)