all repos — fluxbox @ 73d2e5b7da332cbc42c987889bb2df879d354f8e

custom fork of the fluxbox windowmanager

missed a touch in the reparent thing
rathnor rathnor
commit

73d2e5b7da332cbc42c987889bb2df879d354f8e

parent

386b9d034b6b8e9164c0449e623ef22e0c9808e9

1 files changed, 2 insertions(+), 2 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.283 2004/04/30 13:11:40 rathnor Exp $ +// $Id: Window.cc,v 1.284 2004/04/30 13:48:58 rathnor Exp $ #include "Window.hh"

@@ -3153,7 +3153,7 @@ #endif // DEBUG

// reparent to root window client->reparent(screen().rootWindow().window(), frame().x(), frame().y()); - if(xev.xreparent.send_event) { + if (xev.xreparent.send_event && !remap) { client->hide(); } }