aboutsummaryrefslogtreecommitdiff
path: root/src/WinClient.cc
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-12-21 15:24:28 (GMT)
committerrathnor <rathnor>2003-12-21 15:24:28 (GMT)
commitdfdb8219fa74defd4608f3574128f95eb9fcde64 (patch)
tree02825d7e3375ebb94daf50015928669764c45cb7 /src/WinClient.cc
parent8192e8bc2a34d55adae71322362890bace43de72 (diff)
downloadfluxbox-dfdb8219fa74defd4608f3574128f95eb9fcde64.zip
fluxbox-dfdb8219fa74defd4608f3574128f95eb9fcde64.tar.bz2
more sloppy focus fixing
Diffstat (limited to 'src/WinClient.cc')
-rw-r--r--src/WinClient.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/WinClient.cc b/src/WinClient.cc
index a3761f4..111e51d 100644
--- a/src/WinClient.cc
+++ b/src/WinClient.cc
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22// $Id: WinClient.cc,v 1.35 2003/12/21 13:57:38 fluxgen Exp $ 22// $Id: WinClient.cc,v 1.36 2003/12/21 15:24:28 rathnor Exp $
23 23
24#include "WinClient.hh" 24#include "WinClient.hh"
25 25
@@ -118,8 +118,10 @@ WinClient::~WinClient() {
118 if (m_blackbox_hint != 0) 118 if (m_blackbox_hint != 0)
119 XFree(m_blackbox_hint); 119 XFree(m_blackbox_hint);
120 120
121 if (window()) 121 if (window()) {
122 fluxbox->removeWindowSearch(window()); 122 fluxbox->removeWindowSearch(window());
123 fluxbox->removeRedirectEvent(None, window());
124 }
123 125
124 m_win = 0; 126 m_win = 0;
125} 127}