aboutsummaryrefslogtreecommitdiff
path: root/src/Window.cc
diff options
context:
space:
mode:
authorrathnor <rathnor>2004-04-30 13:48:58 (GMT)
committerrathnor <rathnor>2004-04-30 13:48:58 (GMT)
commit73d2e5b7da332cbc42c987889bb2df879d354f8e (patch)
tree9d87657b50acac6a542384df810e793613be17d2 /src/Window.cc
parent386b9d034b6b8e9164c0449e623ef22e0c9808e9 (diff)
downloadfluxbox-73d2e5b7da332cbc42c987889bb2df879d354f8e.zip
fluxbox-73d2e5b7da332cbc42c987889bb2df879d354f8e.tar.bz2
missed a touch in the reparent thing
Diffstat (limited to 'src/Window.cc')
-rw-r--r--src/Window.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Window.cc b/src/Window.cc
index 868d4a8..8c6e07c 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.283 2004/04/30 13:11:40 rathnor Exp $ 25// $Id: Window.cc,v 1.284 2004/04/30 13:48:58 rathnor Exp $
26 26
27#include "Window.hh" 27#include "Window.hh"
28 28
@@ -3153,7 +3153,7 @@ void FluxboxWindow::restore(WinClient *client, bool remap) {
3153 // reparent to root window 3153 // reparent to root window
3154 client->reparent(screen().rootWindow().window(), frame().x(), frame().y()); 3154 client->reparent(screen().rootWindow().window(), frame().x(), frame().y());
3155 3155
3156 if(xev.xreparent.send_event) { 3156 if (xev.xreparent.send_event && !remap) {
3157 client->hide(); 3157 client->hide();
3158 } 3158 }
3159 } 3159 }