mirror of
https://github.com/brl/mutter.git
synced 2024-12-23 11:32:04 +00:00
display: Kill a warning at shutdown
A small semicolon was causing us to always remove the focus timeout ID.
This commit is contained in:
parent
d588de635a
commit
c6fcc79e6a
@ -1050,7 +1050,7 @@ meta_display_close (MetaDisplay *display,
|
|||||||
|
|
||||||
meta_display_remove_autoraise_callback (display);
|
meta_display_remove_autoraise_callback (display);
|
||||||
|
|
||||||
if (display->focus_timeout_id);
|
if (display->focus_timeout_id)
|
||||||
g_source_remove (display->focus_timeout_id);
|
g_source_remove (display->focus_timeout_id);
|
||||||
display->focus_timeout_id = 0;
|
display->focus_timeout_id = 0;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user