diff options
-rw-r--r-- | src/Window.cc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/Window.cc b/src/Window.cc index 86026c9..faf9dfc 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -302,8 +302,7 @@ FluxboxWindow::FluxboxWindow(WinClient &client, FbTk::XLayer &layer): | |||
302 | m_parent(client.screen().rootWindow()), | 302 | m_parent(client.screen().rootWindow()), |
303 | m_resize_corner(RIGHTBOTTOM) { | 303 | m_resize_corner(RIGHTBOTTOM) { |
304 | 304 | ||
305 | screen().focusedWinFrameTheme().reconfigSig().attach(this); | 305 | m_theme.reconfigSig().attach(this); |
306 | screen().unfocusedWinFrameTheme().reconfigSig().attach(this); | ||
307 | 306 | ||
308 | init(); | 307 | init(); |
309 | 308 | ||
@@ -3016,9 +3015,9 @@ void FluxboxWindow::update(FbTk::Subject *subj) { | |||
3016 | if (FocusControl::focusedFbWindow()) | 3015 | if (FocusControl::focusedFbWindow()) |
3017 | setFullscreenLayer(); | 3016 | setFullscreenLayer(); |
3018 | } | 3017 | } |
3019 | } else if (subj == &frame().theme()->reconfigSig()) { | 3018 | } else if (subj == &m_theme.reconfigSig()) { |
3020 | reconfigTheme(); | ||
3021 | frame().reconfigure(); | 3019 | frame().reconfigure(); |
3020 | reconfigTheme(); | ||
3022 | } | 3021 | } |
3023 | } | 3022 | } |
3024 | 3023 | ||