diff options
author | Mark Tiefenbruck <mark@fluxbox.org> | 2008-01-21 17:00:00 (GMT) |
---|---|---|
committer | Mark Tiefenbruck <mark@fluxbox.org> | 2008-01-21 17:00:00 (GMT) |
commit | 38a01a71b401800c8aa3b242f672cc58143f6c28 (patch) | |
tree | 62dcc76e1ad7ace61476a89f606181e477467790 /src | |
parent | db4ec8cf20b4e72cd32d0632a5ab6a8584d2515a (diff) | |
download | fluxbox_pavel-38a01a71b401800c8aa3b242f672cc58143f6c28.zip fluxbox_pavel-38a01a71b401800c8aa3b242f672cc58143f6c28.tar.bz2 |
fix some updates on style change
Diffstat (limited to 'src')
-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 | ||