summaryrefslogtreecommitdiff
path: root/src/screen.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-02-16 18:14:05 +0000
committerDana Jansens <danakj@orodu.net>2003-02-16 18:14:05 +0000
commit16a952c35dd15d52b304abaf9c366e9263b45430 (patch)
treee069bc39630a56fb5af43ee81688fcbec4ee1b2c /src/screen.hh
parent893faed7b1222e71b0e2f618254913819b3365b9 (diff)
adjust how the config is loaded. it is not loaded at all during the screen's constructor, it is loaded afterwards and applied, but before windows are managed
Diffstat (limited to 'src/screen.hh')
-rw-r--r--src/screen.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screen.hh b/src/screen.hh
index 457ca324..65eacaee 100644
--- a/src/screen.hh
+++ b/src/screen.hh
@@ -165,7 +165,7 @@ public:
inline bool managed() const { return _managed; }
//! Returns the config options set by the user scripts
- const Config& config() const { return _config; }
+ Config& config() { return _config; }
//! An offscreen window which gets focus when nothing else has it
inline Window focuswindow() const { return _focuswindow; }