diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/fluxbox.cc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/fluxbox.cc b/src/fluxbox.cc index d32840a..2300002 100644 --- a/src/fluxbox.cc +++ b/src/fluxbox.cc | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: fluxbox.cc,v 1.235 2004/03/21 09:00:25 rathnor Exp $ | 25 | // $Id: fluxbox.cc,v 1.236 2004/03/23 09:19:57 fluxgen Exp $ |
26 | 26 | ||
27 | #include "fluxbox.hh" | 27 | #include "fluxbox.hh" |
28 | 28 | ||
@@ -1771,6 +1771,11 @@ void Fluxbox::real_reconfigure() { | |||
1771 | if (old_blackboxrc) | 1771 | if (old_blackboxrc) |
1772 | XrmDestroyDatabase(old_blackboxrc); | 1772 | XrmDestroyDatabase(old_blackboxrc); |
1773 | 1773 | ||
1774 | ScreenList::iterator screen_it = m_screen_list.begin(); | ||
1775 | const ScreenList::const_iterator screen_it_end = m_screen_list.end(); | ||
1776 | for (; screen_it != screen_it_end; ++screen_it) | ||
1777 | load_rc(*(*screen_it)); | ||
1778 | |||
1774 | // reconfigure all screens | 1779 | // reconfigure all screens |
1775 | for_each(m_screen_list.begin(), m_screen_list.end(), mem_fun(&BScreen::reconfigure)); | 1780 | for_each(m_screen_list.begin(), m_screen_list.end(), mem_fun(&BScreen::reconfigure)); |
1776 | 1781 | ||