ICCCM 4.1.4 advices the window manager to trigger the transition to
Withdrawn state on real and synthetic UnmapNotify events.
| src/Client.cc | |
| 539 | @@ -539,6 +539,11 @@ |
| 539 | if ((ev->window != ev->event) && (ev->send_event != true)) { |
| 540 | return NULL; |
| 541 | } |
| 542 | |
| 543 | // ICCCM 4.1.4 advices the window manager to trigger the transition to |
| 544 | // Withdrawn state on real and synthetic UnmapNotify events. |
| 545 | setWmState(WithdrawnState); |
| 546 | |
| 547 | #ifdef DEBUG |
| 548 | cerr << __FILE__ << "@" << __LINE__ << ": " |
| 549 | << "Client(" << this << ")::handleUnmapEvent(" << ev << ")" << endl |
| ... | |