aboutsummaryrefslogtreecommitdiff
path: root/src/FbCommands.cc
diff options
context:
space:
mode:
authormathias <mathias>2005-11-16 22:08:05 (GMT)
committermathias <mathias>2005-11-16 22:08:05 (GMT)
commit28837ee6e1e3226bec37a7854bd36c45406058f6 (patch)
treeb86d4fe57ec4b637d0480be8f9ce16c2dacb179e /src/FbCommands.cc
parent6403deb65e7ce00c94d22c4b6893437a6cafe481 (diff)
downloadfluxbox-28837ee6e1e3226bec37a7854bd36c45406058f6.zip
fluxbox-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.cc3
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) {
213void SetStyleCmd::execute() { 213void 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
219void ShowRootMenuCmd::execute() { 220void ShowRootMenuCmd::execute() {