diff options
-rw-r--r-- | src/Window.cc | 12 |
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; |