Made sure first created xcb window still receives focus.
Change 50ca45f059
caused mapped windows to not receive focus by
default. The _NET_WM_USER_TIME spec says that if the user time is set to
0 (or CurrentTime), the window will not be initially focused. Thus, if
the connection time has not yet been set, we skip this part to restore
the old behavior.
Change-Id: I19de3602c78629ad2bc65f5e1976313949c82c4c
Reviewed-by: Jan Arne Petersen <jpetersen@openismus.com>
Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
This commit is contained in:
parent
22494ea8e8
commit
9a68dd0156
@ -549,7 +549,8 @@ void QXcbWindow::show()
|
||||
updateNetWmStateBeforeMap();
|
||||
}
|
||||
|
||||
updateNetWmUserTime(connection()->time());
|
||||
if (connection()->time() != CurrentTime)
|
||||
updateNetWmUserTime(connection()->time());
|
||||
|
||||
Q_XCB_CALL(xcb_map_window(xcb_connection(), m_window));
|
||||
xcb_flush(xcb_connection());
|
||||
|
Loading…
Reference in New Issue
Block a user