all repos — fluxbox @ 9a3c7102949736628125de3077951b639491b2b4

custom fork of the fluxbox windowmanager

fixed missing break
fluxgen fluxgen
commit

9a3c7102949736628125de3077951b639491b2b4

parent

89fddca1d7a2809278f9307367e7f6b600456dc1

1 files changed, 3 insertions(+), 1 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.133 2003/04/15 12:18:37 fluxgen Exp $ +// $Id: Window.cc,v 1.134 2003/04/15 12:31:53 fluxgen Exp $ #include "Window.hh"

@@ -1863,8 +1863,10 @@ void FluxboxWindow::handleEvent(XEvent &event) {

switch (event.type) { case ConfigureRequest: configureRequestEvent(event.xconfigurerequest); + break; case MapNotify: mapNotifyEvent(event.xmap); + break; case MapRequest: mapRequestEvent(event.xmaprequest); break;