fixed MapRequest and PropertyNotify events

This commit is contained in:
fluxgen 2003-04-25 16:11:00 +00:00
parent ac6650454b
commit 4e0757bef0

View file

@ -22,7 +22,7 @@
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE. // DEALINGS IN THE SOFTWARE.
// $Id: Window.cc,v 1.147 2003/04/25 11:27:11 rathnor Exp $ // $Id: Window.cc,v 1.148 2003/04/25 16:11:00 fluxgen Exp $
#include "Window.hh" #include "Window.hh"
@ -1896,8 +1896,14 @@ void FluxboxWindow::handleEvent(XEvent &event) {
case MapNotify: case MapNotify:
mapNotifyEvent(event.xmap); mapNotifyEvent(event.xmap);
break; break;
case MapRequest: // This is already handled in Fluxbox::handleEvent
mapRequestEvent(event.xmaprequest); // case MapRequest:
// mapRequestEvent(event.xmaprequest);
//break;
case PropertyNotify:
if (event.xproperty.state != PropertyDelete) {
propertyNotifyEvent(event.xproperty.atom);
}
break; break;
default: default:
break; break;