aboutsummaryrefslogtreecommitdiff
path: root/src/Screen.cc
diff options
context:
space:
mode:
authormarkt <markt>2006-07-09 06:51:28 (GMT)
committermarkt <markt>2006-07-09 06:51:28 (GMT)
commit7a79953f04cb236a2fa662d841eacf3b572eb505 (patch)
tree94726de8447e99835df6c52cbc4f47a4569125af /src/Screen.cc
parent8a640f8d638d1f330f816a2ed00931ba2d01847d (diff)
downloadfluxbox-7a79953f04cb236a2fa662d841eacf3b572eb505.zip
fluxbox-7a79953f04cb236a2fa662d841eacf3b572eb505.tar.bz2
fix detach focus again 8)
Diffstat (limited to 'src/Screen.cc')
-rw-r--r--src/Screen.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Screen.cc b/src/Screen.cc
index c0d0706..a827f92 100644
--- a/src/Screen.cc
+++ b/src/Screen.cc
@@ -1413,8 +1413,9 @@ FluxboxWindow *BScreen::createWindow(WinClient &client) {
1413 return 0; 1413 return 0;
1414 } 1414 }
1415 1415
1416 // can't setInputFocus yet and mapNotifyEvent doesn't happen for the client
1416 if (focusControl().focusNew() || FocusControl::focusedWindow() == &client) 1417 if (focusControl().focusNew() || FocusControl::focusedWindow() == &client)
1417 win->setInputFocus(); 1418 FocusControl::setFocusedWindow(&client);
1418 1419
1419 m_clientlist_sig.notify(); 1420 m_clientlist_sig.notify();
1420 1421