all repos — fluxbox @ 4e0757bef08437d508c7104654642fb78d70f73a

custom fork of the fluxbox windowmanager

fixed MapRequest and PropertyNotify events
fluxgen fluxgen
commit

4e0757bef08437d508c7104654642fb78d70f73a

parent

ac6650454b256cc6b3c50dc3fe243c0b4e265a73

1 files changed, 9 insertions(+), 3 deletions(-)

jump to
M src/Window.ccsrc/Window.cc

@@ -22,7 +22,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // 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"

@@ -1896,8 +1896,14 @@ break;

case MapNotify: mapNotifyEvent(event.xmap); break; - case MapRequest: - mapRequestEvent(event.xmaprequest); + // This is already handled in Fluxbox::handleEvent + // case MapRequest: + // mapRequestEvent(event.xmaprequest); + //break; + case PropertyNotify: + if (event.xproperty.state != PropertyDelete) { + propertyNotifyEvent(event.xproperty.atom); + } break; default: break;