aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-07-21 17:54:07 (GMT)
committerrathnor <rathnor>2003-07-21 17:54:07 (GMT)
commit906a6b239589af29624bca151172c5e6a436bfc8 (patch)
treecdb1cccd2efcfd7d6d14a76dcf84357472a9e8dc /src
parent9932b880490d92d12bc07e60e1b7f0c59f29d0fc (diff)
downloadfluxbox-906a6b239589af29624bca151172c5e6a436bfc8.zip
fluxbox-906a6b239589af29624bca151172c5e6a436bfc8.tar.bz2
fix removeClient (no idea why that line was removed [by me])
Diffstat (limited to 'src')
-rw-r--r--src/Window.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Window.cc b/src/Window.cc
index 10892df..a84d710 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: Window.cc,v 1.208 2003/07/21 15:26:56 rathnor Exp $ 25// $Id: Window.cc,v 1.209 2003/07/21 17:54:07 rathnor Exp $
26 26
27#include "Window.hh" 27#include "Window.hh"
28 28
@@ -736,6 +736,7 @@ bool FluxboxWindow::detachClient(WinClient &client) {
736 736
737 // m_client must be valid as there should be at least one other window 737 // m_client must be valid as there should be at least one other window
738 // otherwise this wouldn't be here (refer numClients() <= 1 return) 738 // otherwise this wouldn't be here (refer numClients() <= 1 return)
739 client.m_win = screen().createWindow(client);
739 m_client->raise(); 740 m_client->raise();
740 setInputFocus(); 741 setInputFocus();
741 return true; 742 return true;