aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2004-03-23 09:21:29 (GMT)
committerfluxgen <fluxgen>2004-03-23 09:21:29 (GMT)
commit27e83c1b06231bd8f5b4c4a7c6e56a3931a80a62 (patch)
treeceede00e26f90d8c98b0ec5c5028186bfea69f14
parent7a2e83f9d25cf3380dceaa0c46b39e68fbbf9574 (diff)
downloadfluxbox-27e83c1b06231bd8f5b4c4a7c6e56a3931a80a62.zip
fluxbox-27e83c1b06231bd8f5b4c4a7c6e56a3931a80a62.tar.bz2
setLineAttributes in reconfigure
-rw-r--r--src/Screen.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Screen.cc b/src/Screen.cc
index a1a6dbc..750902f 100644
--- a/src/Screen.cc
+++ b/src/Screen.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: Screen.cc,v 1.271 2004/03/22 21:01:10 fluxgen Exp $ 25// $Id: Screen.cc,v 1.272 2004/03/23 09:21:29 fluxgen Exp $
26 26
27 27
28#include "Screen.hh" 28#include "Screen.hh"
@@ -930,6 +930,11 @@ void BScreen::reconfigure() {
930 if (*resource.menu_delay_close < 0) 930 if (*resource.menu_delay_close < 0)
931 *resource.menu_delay_close = 0; 931 *resource.menu_delay_close = 0;
932 932
933 m_root_theme->setLineAttributes(*resource.gc_line_width,
934 *resource.gc_line_style,
935 *resource.gc_cap_style,
936 *resource.gc_join_style);
937
933 m_menutheme->setDelayOpen(*resource.menu_delay); 938 m_menutheme->setDelayOpen(*resource.menu_delay);
934 m_menutheme->setDelayClose(*resource.menu_delay_close); 939 m_menutheme->setDelayClose(*resource.menu_delay_close);
935 940
@@ -1001,6 +1006,7 @@ void BScreen::reconfigure() {
1001 imageControl().cleanCache(); 1006 imageControl().cleanCache();
1002 // notify objects that the screen is reconfigured 1007 // notify objects that the screen is reconfigured
1003 m_reconfigure_sig.notify(); 1008 m_reconfigure_sig.notify();
1009
1004} 1010}
1005 1011
1006 1012