aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-05-24 12:04:39 (GMT)
committerfluxgen <fluxgen>2003-05-24 12:04:39 (GMT)
commit3eafda3f2e6e14eaa1ca8d7ec95e49537301fea3 (patch)
treed98eb91a277bfec85d4056f9fb3a6a8948fe799e
parent270cbb65922487faded4b8997bd8cd4f57a2dc95 (diff)
downloadfluxbox-3eafda3f2e6e14eaa1ca8d7ec95e49537301fea3.zip
fluxbox-3eafda3f2e6e14eaa1ca8d7ec95e49537301fea3.tar.bz2
fixed layer menu bug, it should be internal so the parent dont kill it
-rw-r--r--src/Window.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Window.cc b/src/Window.cc
index dc8e3dc..f2a5412 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.184 2003/05/21 23:59:53 rathnor Exp $ 25// $Id: Window.cc,v 1.185 2003/05/24 12:04:39 fluxgen Exp $
26 26
27#include "Window.hh" 27#include "Window.hh"
28 28
@@ -329,6 +329,9 @@ FluxboxWindow::~FluxboxWindow() {
329 329
330 330
331void FluxboxWindow::init() { 331void FluxboxWindow::init() {
332 // so parent menu don't kill us
333 m_layermenu->setInternalMenu();
334
332 m_attaching_tab = 0; 335 m_attaching_tab = 0;
333 assert(m_client); 336 assert(m_client);
334 337