diff options
Diffstat (limited to 'src')
-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) |