update comment also set expected focus window when setting input focus.
2002-08-08 Craig Black <blackc@speakeasy.net> * src/display.h: update comment * src/window.c: (meta_window_focus): also set expected focus window when setting input focus.
This commit is contained in:
parent
311052d555
commit
8c5369d522
@ -1,3 +1,9 @@
|
||||
2002-08-08 Craig Black <blackc@speakeasy.net>
|
||||
|
||||
* src/display.h: update comment
|
||||
* src/window.c: (meta_window_focus): also set expected
|
||||
focus window when setting input focus.
|
||||
|
||||
2002-08-07 Craig Black <blackc@speakeasy.net>
|
||||
|
||||
* src/display.c: (meta_display_unshow_desktop): focus
|
||||
|
@ -153,8 +153,7 @@ struct _MetaDisplay
|
||||
*/
|
||||
MetaWindow *focus_window;
|
||||
|
||||
/* WM_TAKE_FOCUS has been sent but we have not yet
|
||||
* received the resulting FocusIn event for this window
|
||||
/* window we are expecting a FocusIn event for
|
||||
*/
|
||||
MetaWindow *expected_focus_window;
|
||||
|
||||
|
@ -2781,6 +2781,7 @@ meta_window_focus (MetaWindow *window,
|
||||
window->frame->xwindow,
|
||||
RevertToPointerRoot,
|
||||
CurrentTime);
|
||||
window->display->expected_focus_window = window;
|
||||
}
|
||||
}
|
||||
else
|
||||
@ -2796,6 +2797,7 @@ meta_window_focus (MetaWindow *window,
|
||||
window->xwindow,
|
||||
RevertToPointerRoot,
|
||||
timestamp);
|
||||
window->display->expected_focus_window = window;
|
||||
}
|
||||
|
||||
if (window->take_focus)
|
||||
|
Loading…
Reference in New Issue
Block a user