diff options
author | Jim Ramsay <i.am@jimramsay.com> | 2009-10-14 01:05:49 (GMT) |
---|---|---|
committer | Jim Ramsay <i.am@jimramsay.com> | 2009-10-14 01:05:49 (GMT) |
commit | 839ea523164caecd8c779e60539b78c2a748a81f (patch) | |
tree | 0019d04f27a1a258bc7a900e3cf77b916dca6493 /src/RootTheme.cc | |
parent | 4d3aa646c1d1d1de4fdb31f938f6ea62fd5dd21e (diff) | |
parent | 8def80cec337a986b762cdbb5e2555c6da809353 (diff) | |
download | fluxbox_lack-839ea523164caecd8c779e60539b78c2a748a81f.zip fluxbox_lack-839ea523164caecd8c779e60539b78c2a748a81f.tar.bz2 |
Merge branch 'master' into argbtesting/argbargb
Conflicts:
src/FbTk/FbWindow.cc
Diffstat (limited to 'src/RootTheme.cc')
-rw-r--r-- | src/RootTheme.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/RootTheme.cc b/src/RootTheme.cc index 049eb27..34c06e9 100644 --- a/src/RootTheme.cc +++ b/src/RootTheme.cc | |||
@@ -202,6 +202,10 @@ void RootTheme::reconfigTheme() { | |||
202 | filename = FbTk::StringUtil::expandFilename(filename); | 202 | filename = FbTk::StringUtil::expandFilename(filename); |
203 | std::string cmd = realProgramName("fbsetbg") + (m_first ? " -z " : " -Z "); | 203 | std::string cmd = realProgramName("fbsetbg") + (m_first ? " -z " : " -Z "); |
204 | 204 | ||
205 | // user explicitly requests NO background be set at all | ||
206 | if (strstr(m_background->options().c_str(), "unset") != 0) { | ||
207 | return; | ||
208 | } | ||
205 | // style doesn't wish to change the background | 209 | // style doesn't wish to change the background |
206 | if (strstr(m_background->options().c_str(), "none") != 0) { | 210 | if (strstr(m_background->options().c_str(), "none") != 0) { |
207 | if (!m_first) | 211 | if (!m_first) |