mirror of
https://github.com/brl/mutter.git
synced 2024-11-09 23:46:33 -05:00
check window has frame before flashing it
This commit is contained in:
parent
b8c75c3fc0
commit
767cb27f78
@ -231,11 +231,11 @@ bell_flash_frame (MetaDisplay *display,
|
||||
|
||||
g_assert (xkb_ev->xkb_type == XkbBellNotify);
|
||||
window = meta_display_lookup_x_window (display, xkb_bell_event->window);
|
||||
if (!window && (display->focus_window) && (display->focus_window->frame))
|
||||
if (!window && (display->focus_window))
|
||||
{
|
||||
window = display->focus_window;
|
||||
}
|
||||
if (window)
|
||||
if (window && window->frame)
|
||||
{
|
||||
bell_flash_window_frame (window);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user