diff options
author | markt <markt> | 2006-07-20 07:15:59 (GMT) |
---|---|---|
committer | markt <markt> | 2006-07-20 07:15:59 (GMT) |
commit | f9ade8947c08a7f1a4485b44da2403a55a3c04e1 (patch) | |
tree | 793620785e0cae212af273681529415b57a5c8cf /src/Window.cc | |
parent | f4d1af12083863f1aa63c88e3eb55a9317758fc1 (diff) | |
download | fluxbox_pavel-f9ade8947c08a7f1a4485b44da2403a55a3c04e1.zip fluxbox_pavel-f9ade8947c08a7f1a4485b44da2403a55a3c04e1.tar.bz2 |
properly revert focus when two windows close at the same time
Diffstat (limited to 'src/Window.cc')
-rw-r--r-- | src/Window.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Window.cc b/src/Window.cc index 2bb19a2..aa9a2b7 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -2112,7 +2112,7 @@ void FluxboxWindow::setFocusFlag(bool focus) { | |||
2112 | if (was_focused != focus) { | 2112 | if (was_focused != focus) { |
2113 | m_focussig.notify(); | 2113 | m_focussig.notify(); |
2114 | if (m_client) | 2114 | if (m_client) |
2115 | m_client->focusSig().notify(); | 2115 | m_client->receivedFocus(); |
2116 | } | 2116 | } |
2117 | } | 2117 | } |
2118 | 2118 | ||