all repos — fluxbox @ c7c9ec5f4d962a631e5c97a5c7efd6799ebac204

custom fork of the fluxbox windowmanager

fixed focus new bug
fluxgen fluxgen
commit

c7c9ec5f4d962a631e5c97a5c7efd6799ebac204

parent

4e9eac4824ba042f0a192b51758ce68293c16582

1 files changed, 7 insertions(+), 4 deletions(-)

jump to
M src/fluxbox.ccsrc/fluxbox.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: fluxbox.cc,v 1.119 2003/04/26 05:42:36 rathnor Exp $ +// $Id: fluxbox.cc,v 1.120 2003/04/27 00:36:28 fluxgen Exp $ #include "fluxbox.hh"

@@ -682,9 +682,12 @@ if (win)

win->mapRequestEvent(e->xmaprequest); } break; - case MapNotify: - // handled directly in FluxboxWindow::handleEvent - break; + case MapNotify: { + // handled directly in FluxboxWindow::handleEvent + FluxboxWindow *win = searchWindow(e->xmap.window); + if (win) + win->mapNotifyEvent(e->xmap); + } break; case UnmapNotify: handleUnmapNotify(e->xunmap); break;