diff options
author | mathias <mathias> | 2005-11-16 22:08:05 (GMT) |
---|---|---|
committer | mathias <mathias> | 2005-11-16 22:08:05 (GMT) |
commit | 28837ee6e1e3226bec37a7854bd36c45406058f6 (patch) | |
tree | b86d4fe57ec4b637d0480be8f9ce16c2dacb179e /src/FbCommands.cc | |
parent | 6403deb65e7ce00c94d22c4b6893437a6cafe481 (diff) | |
download | fluxbox_pavel-28837ee6e1e3226bec37a7854bd36c45406058f6.zip fluxbox_pavel-28837ee6e1e3226bec37a7854bd36c45406058f6.tar.bz2 |
introduced session.styleOverlay (~/.fluxbox/overlay), all style settings
made in that file will override/overlay the ones made in the used
style. TODO: write more specific docu about it
Diffstat (limited to 'src/FbCommands.cc')
-rw-r--r-- | src/FbCommands.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/FbCommands.cc b/src/FbCommands.cc index cdecc2b..e188a40 100644 --- a/src/FbCommands.cc +++ b/src/FbCommands.cc | |||
@@ -213,7 +213,8 @@ SetStyleCmd::SetStyleCmd(const std::string &filename):m_filename(filename) { | |||
213 | void SetStyleCmd::execute() { | 213 | void SetStyleCmd::execute() { |
214 | Fluxbox::instance()->saveStyleFilename(m_filename.c_str()); | 214 | Fluxbox::instance()->saveStyleFilename(m_filename.c_str()); |
215 | Fluxbox::instance()->save_rc(); | 215 | Fluxbox::instance()->save_rc(); |
216 | FbTk::ThemeManager::instance().load(m_filename); | 216 | FbTk::ThemeManager::instance().load(m_filename, |
217 | Fluxbox::instance()->getStyleOverlayFilename()); | ||
217 | } | 218 | } |
218 | 219 | ||
219 | void ShowRootMenuCmd::execute() { | 220 | void ShowRootMenuCmd::execute() { |