aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-12-15 20:20:20 (GMT)
committerrathnor <rathnor>2003-12-15 20:20:20 (GMT)
commit7b0e1504f060457ec83c8fb6e98c47983badda3e (patch)
tree5dbeeb52207a58256a157dfe4cd4d79b8fb411d2 /src
parent907c2d2aaacae89a65ac1afb84ab88b10870e2e8 (diff)
downloadfluxbox-7b0e1504f060457ec83c8fb6e98c47983badda3e.zip
fluxbox-7b0e1504f060457ec83c8fb6e98c47983badda3e.tar.bz2
tweak of defaults - make no input hint, no send focus default to
passive
Diffstat (limited to 'src')
-rw-r--r--src/WinClient.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WinClient.cc b/src/WinClient.cc
index 4dae403..7ed3c64 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.32 2003/12/15 11:55:58 rathnor Exp $ 22// $Id: WinClient.cc,v 1.33 2003/12/15 20:20:20 rathnor Exp $
23 23
24#include "WinClient.hh" 24#include "WinClient.hh"
25 25
@@ -403,8 +403,8 @@ void WinClient::updateWMHints() {
403 // and requires globally active 403 // and requires globally active
404 if (send_focus_message) 404 if (send_focus_message)
405 m_focus_mode = F_GLOBALLYACTIVE; 405 m_focus_mode = F_GLOBALLYACTIVE;
406 else 406 else // lots of apps have no hint, but need focus
407 m_focus_mode = F_NOINPUT; 407 m_focus_mode = F_PASSIVE;
408 408
409 if (wmhint->flags & StateHint) 409 if (wmhint->flags & StateHint)
410 initial_state = wmhint->initial_state; 410 initial_state = wmhint->initial_state;