diff options
author | markt <markt> | 2007-03-25 17:32:49 (GMT) |
---|---|---|
committer | markt <markt> | 2007-03-25 17:32:49 (GMT) |
commit | fca762aa6ac510aa3b5a85bd3b2c56945b984e37 (patch) | |
tree | d8d75e5f0f01f7768233cbb9223cd4acc1d9d7a8 /src | |
parent | f411fdb3df1ef27e498a41c6748b6ddaa5003b86 (diff) | |
download | fluxbox-fca762aa6ac510aa3b5a85bd3b2c56945b984e37.zip fluxbox-fca762aa6ac510aa3b5a85bd3b2c56945b984e37.tar.bz2 |
little fix for clients in tabbed windows raising themselves
Diffstat (limited to 'src')
-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 8e6b887..079126b 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -2578,7 +2578,7 @@ void FluxboxWindow::configureRequestEvent(XConfigureRequestEvent &cr) { | |||
2578 | case Above: | 2578 | case Above: |
2579 | case TopIf: | 2579 | case TopIf: |
2580 | default: | 2580 | default: |
2581 | setCurrentClient(*client, false); | 2581 | setCurrentClient(*client, focused); |
2582 | raise(); | 2582 | raise(); |
2583 | break; | 2583 | break; |
2584 | 2584 | ||