aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-02-06 10:17:30 (GMT)
committerfluxgen <fluxgen>2002-02-06 10:17:30 (GMT)
commit42fa67144f1042bfd8469a878ab0941892bec6a0 (patch)
tree6898355c612d66d56a88a84e8f556ebe0a5bb52b
parentccb2beb0e1e078a33a8603ec591adadf78ff148a (diff)
downloadfluxbox-42fa67144f1042bfd8469a878ab0941892bec6a0.zip
fluxbox-42fa67144f1042bfd8469a878ab0941892bec6a0.tar.bz2
fixed isTransient in UnmapNotify
-rw-r--r--src/fluxbox.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/fluxbox.cc b/src/fluxbox.cc
index 2f2b7af..c22a82b 100644
--- a/src/fluxbox.cc
+++ b/src/fluxbox.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: fluxbox.cc,v 1.26 2002/02/04 06:57:26 fluxgen Exp $ 25// $Id: fluxbox.cc,v 1.27 2002/02/06 10:17:30 fluxgen Exp $
26 26
27//Use some GNU extensions 27//Use some GNU extensions
28#ifndef _GNU_SOURCE 28#ifndef _GNU_SOURCE
@@ -727,7 +727,8 @@ void Fluxbox::process_event(XEvent *e) {
727 // only process windows with StructureNotify selected 727 // only process windows with StructureNotify selected
728 // (ignore SubstructureNotify) 728 // (ignore SubstructureNotify)
729 // if (win->windowFor(e->xunmap.window)) 729 // if (win->windowFor(e->xunmap.window))
730 if (win->getClientWindow()!=e->xunmap.window) 730 if (win->getClientWindow()!=e->xunmap.window ||
731 win->isTransient())
731 win->unmapNotifyEvent(&e->xunmap); 732 win->unmapNotifyEvent(&e->xunmap);
732 #ifdef SLIT 733 #ifdef SLIT
733 } else if ((slit = searchSlit(e->xunmap.window))) { 734 } else if ((slit = searchSlit(e->xunmap.window))) {