aboutsummaryrefslogtreecommitdiff
path: root/src/FbWinFrame.cc
diff options
context:
space:
mode:
authormarkt <markt>2007-06-03 20:37:10 (GMT)
committermarkt <markt>2007-06-03 20:37:10 (GMT)
commit2f2af3291abe4395aa488eaa7572034e263e92d3 (patch)
tree9c1f97b55f641961bf57e7b07b93a3620009a0ed /src/FbWinFrame.cc
parenta01f5143e2a2ba612628963b844ad6596854c4be (diff)
downloadfluxbox-2f2af3291abe4395aa488eaa7572034e263e92d3.zip
fluxbox-2f2af3291abe4395aa488eaa7572034e263e92d3.tar.bz2
deiconify windows when auto-grouped with new window, when using focusnew
Diffstat (limited to 'src/FbWinFrame.cc')
-rw-r--r--src/FbWinFrame.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/FbWinFrame.cc b/src/FbWinFrame.cc
index dfdcf32..a387744 100644
--- a/src/FbWinFrame.cc
+++ b/src/FbWinFrame.cc
@@ -701,7 +701,8 @@ void FbWinFrame::setClientWindow(FbTk::FbWindow &win) {
701 XChangeWindowAttributes(win.display(), win.window(), CWEventMask|CWDontPropagate, &attrib_set); 701 XChangeWindowAttributes(win.display(), win.window(), CWEventMask|CWDontPropagate, &attrib_set);
702 702
703 m_clientarea.raise(); 703 m_clientarea.raise();
704 win.show(); 704 if (isVisible())
705 win.show();
705 win.raise(); 706 win.raise();
706 m_window.showSubwindows(); 707 m_window.showSubwindows();
707 708