diff options
author | rathnor <rathnor> | 2003-05-08 01:51:18 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-05-08 01:51:18 (GMT) |
commit | 65fc419175e4e63013f97a8c72df3bb373052c97 (patch) | |
tree | 8d4bce9726d661e5899ee00f767331952c050ee5 /src/Window.cc | |
parent | af6a1a123fc7eba7a15113ef2b78bb805f149e6e (diff) | |
download | fluxbox_pavel-65fc419175e4e63013f97a8c72df3bb373052c97.zip fluxbox_pavel-65fc419175e4e63013f97a8c72df3bb373052c97.tar.bz2 |
fix some focus problems when changing workspace
Diffstat (limited to 'src/Window.cc')
-rw-r--r-- | src/Window.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Window.cc b/src/Window.cc index 967f943..b6a80ba 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.161 2003/05/07 16:44:51 rathnor Exp $ | 25 | // $Id: Window.cc,v 1.162 2003/05/08 01:51:18 rathnor Exp $ |
26 | 26 | ||
27 | #include "Window.hh" | 27 | #include "Window.hh" |
28 | 28 | ||
@@ -1260,7 +1260,7 @@ void FluxboxWindow::deiconify(bool reassoc, bool do_raise) { | |||
1260 | 1260 | ||
1261 | m_frame.show(); | 1261 | m_frame.show(); |
1262 | 1262 | ||
1263 | if (was_iconic || screen.doFocusNew()) | 1263 | if (was_iconic && screen.doFocusNew()) |
1264 | setInputFocus(); | 1264 | setInputFocus(); |
1265 | 1265 | ||
1266 | if (focused != m_frame.focused()) | 1266 | if (focused != m_frame.focused()) |