diff options
author | rathnor <rathnor> | 2003-05-13 11:14:05 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-05-13 11:14:05 (GMT) |
commit | e7903086f27a6112cf7579290dc4888631dc604c (patch) | |
tree | 952a24623bbe195dd859114585b43428171f2d1c /src/Window.cc | |
parent | 3b1306336343ccf7b0faa065ba4c5842561b1caf (diff) | |
download | fluxbox_pavel-e7903086f27a6112cf7579290dc4888631dc604c.zip fluxbox_pavel-e7903086f27a6112cf7579290dc4888631dc604c.tar.bz2 |
fix iconify with autoraise
Diffstat (limited to 'src/Window.cc')
-rw-r--r-- | src/Window.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Window.cc b/src/Window.cc index 4410f5a..1c47fa7 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.172 2003/05/11 23:44:08 rathnor Exp $ | 25 | // $Id: Window.cc,v 1.173 2003/05/13 11:14:05 rathnor Exp $ |
26 | 26 | ||
27 | #include "Window.hh" | 27 | #include "Window.hh" |
28 | 28 | ||
@@ -1240,6 +1240,8 @@ void FluxboxWindow::iconify() { | |||
1240 | (*it)->fbwindow()->iconify(); | 1240 | (*it)->fbwindow()->iconify(); |
1241 | } | 1241 | } |
1242 | } | 1242 | } |
1243 | if (Fluxbox::instance()->getFocusedWindow() == this) | ||
1244 | Fluxbox::instance()->revertFocus(screen()); | ||
1243 | 1245 | ||
1244 | } | 1246 | } |
1245 | 1247 | ||