aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMathias Gumz <akira@fluxbox.org>2015-01-30 21:09:27 (GMT)
committerMathias Gumz <akira@fluxbox.org>2015-01-30 21:09:27 (GMT)
commitf8b9c9a211af2f9ee54c533367ef69e330bdfa8e (patch)
treec50e1c0ab56f6197edb240e7abb1f8ac45253019 /src
parentda285bcb11b862b19f86925e791531d36ea48b46 (diff)
downloadfluxbox-f8b9c9a211af2f9ee54c533367ef69e330bdfa8e.zip
fluxbox-f8b9c9a211af2f9ee54c533367ef69e330bdfa8e.tar.bz2
Fix sometimes missing windowmenu
When the windowmenu file is empty in ~/.fluxbox/init the code falls back to the default. In ab2eef4 I forgot to set the rc_path which caused this bug to happen.
Diffstat (limited to 'src')
-rw-r--r--src/fluxbox.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fluxbox.cc b/src/fluxbox.cc
index 87c4c46..8b8b26c 100644
--- a/src/fluxbox.cc
+++ b/src/fluxbox.cc
@@ -287,6 +287,7 @@ Fluxbox::Fluxbox(int argc, char **argv,
287 "Error message when no X display appears to exist"); 287 "Error message when no X display appears to exist");
288 } 288 }
289 289
290 m_config.path = rc_path;
290 m_config.file = rc_filename; 291 m_config.file = rc_filename;
291 m_active_screen.mouse = 0; 292 m_active_screen.mouse = 0;
292 m_active_screen.key = 0; 293 m_active_screen.key = 0;