aboutsummaryrefslogtreecommitdiff
path: root/src/Window.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-04-25 16:11:00 (GMT)
committerfluxgen <fluxgen>2003-04-25 16:11:00 (GMT)
commit4e0757bef08437d508c7104654642fb78d70f73a (patch)
treec99676b2706648fd8805e465feb8b00bc707af29 /src/Window.cc
parentac6650454b256cc6b3c50dc3fe243c0b4e265a73 (diff)
downloadfluxbox-4e0757bef08437d508c7104654642fb78d70f73a.zip
fluxbox-4e0757bef08437d508c7104654642fb78d70f73a.tar.bz2
fixed MapRequest and PropertyNotify events
Diffstat (limited to 'src/Window.cc')
-rw-r--r--src/Window.cc12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/Window.cc b/src/Window.cc
index a6a5a6b..10db141 100644
--- a/src/Window.cc
+++ b/src/Window.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: Window.cc,v 1.147 2003/04/25 11:27:11 rathnor Exp $ 25// $Id: Window.cc,v 1.148 2003/04/25 16:11:00 fluxgen Exp $
26 26
27#include "Window.hh" 27#include "Window.hh"
28 28
@@ -1896,8 +1896,14 @@ void FluxboxWindow::handleEvent(XEvent &event) {
1896 case MapNotify: 1896 case MapNotify:
1897 mapNotifyEvent(event.xmap); 1897 mapNotifyEvent(event.xmap);
1898 break; 1898 break;
1899 case MapRequest: 1899 // This is already handled in Fluxbox::handleEvent
1900 mapRequestEvent(event.xmaprequest); 1900 // case MapRequest:
1901 // mapRequestEvent(event.xmaprequest);
1902 //break;
1903 case PropertyNotify:
1904 if (event.xproperty.state != PropertyDelete) {
1905 propertyNotifyEvent(event.xproperty.atom);
1906 }
1901 break; 1907 break;
1902 default: 1908 default:
1903 break; 1909 break;