aboutsummaryrefslogtreecommitdiff
path: root/src/Window.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2004-03-30 14:31:30 (GMT)
committerfluxgen <fluxgen>2004-03-30 14:31:30 (GMT)
commit3012463167ba67d80a99591314e57285d4373099 (patch)
tree56343758b0d79dc2a3f55bfd1362208900cdbd0d /src/Window.cc
parent30ae254928a658c09d144bb4440ac149ecfe5f38 (diff)
downloadfluxbox-3012463167ba67d80a99591314e57285d4373099.zip
fluxbox-3012463167ba67d80a99591314e57285d4373099.tar.bz2
fixed java-menu bug, patch from Scott Moser
Diffstat (limited to 'src/Window.cc')
-rw-r--r--src/Window.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Window.cc b/src/Window.cc
index 106f8fe..6ef1532 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.273 2004/03/30 13:48:38 fluxgen Exp $ 25// $Id: Window.cc,v 1.274 2004/03/30 14:31:30 fluxgen Exp $
26 26
27#include "Window.hh" 27#include "Window.hh"
28 28
@@ -3115,7 +3115,8 @@ void FluxboxWindow::restore(WinClient *client, bool remap) {
3115#ifdef DEBUG 3115#ifdef DEBUG
3116 cerr<<"FluxboxWindow::restore: reparent 0x"<<hex<<client->window()<<dec<<" to root"<<endl; 3116 cerr<<"FluxboxWindow::restore: reparent 0x"<<hex<<client->window()<<dec<<" to root"<<endl;
3117#endif // DEBUG 3117#endif // DEBUG
3118 3118 if (!remap)
3119 client->hide();
3119 // reparent to root window 3120 // reparent to root window
3120 client->reparent(screen().rootWindow().window(), frame().x(), frame().y()); 3121 client->reparent(screen().rootWindow().window(), frame().x(), frame().y());
3121 } 3122 }