From bb5a07b3e1d5b2fc3f37e5261c8867bb05814041 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Thu, 23 Jan 2003 03:44:18 +0000 Subject: [PATCH] check if the window exists before trying to focus it --- src/client.cc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/client.cc b/src/client.cc index b36ba9af..f12e643a 100644 --- a/src/client.cc +++ b/src/client.cc @@ -1196,6 +1196,14 @@ bool Client::focus() const if (_focused) return true; + // do a check to see if the window has already been unmapped or destroyed + XEvent ev; + if (XCheckTypedWindowEvent(**otk::display, _window, UnmapNotify, &ev) || + XCheckTypedWindowEvent(**otk::display, _window, DestroyNotify, &ev)) { + XPutBackEvent(**otk::display, &ev); + return false; + } + if (_can_focus) XSetInputFocus(**otk::display, _window, RevertToNone, CurrentTime); -- 2.44.0