aboutsummaryrefslogtreecommitdiff
path: root/src/ButtonTheme.cc
diff options
context:
space:
mode:
authorrathnor <rathnor>2004-08-26 15:09:33 (GMT)
committerrathnor <rathnor>2004-08-26 15:09:33 (GMT)
commit346a6598a62350c5d234e3177de9e6c6c1963475 (patch)
tree02706013944f306c549ca627144a13d6552cd098 /src/ButtonTheme.cc
parent13bf2a7fddff4242581eec62243222acd49a1537 (diff)
downloadfluxbox-346a6598a62350c5d234e3177de9e6c6c1963475.zip
fluxbox-346a6598a62350c5d234e3177de9e6c6c1963475.tar.bz2
make arrow button's arrow size scalable by the user
Diffstat (limited to 'src/ButtonTheme.cc')
-rw-r--r--src/ButtonTheme.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ButtonTheme.cc b/src/ButtonTheme.cc
index 663da77..abd8c24 100644
--- a/src/ButtonTheme.cc
+++ b/src/ButtonTheme.cc
@@ -8,7 +8,8 @@ ButtonTheme::ButtonTheme(int screen_num,
8 ToolTheme(screen_num, name, alt_name), 8 ToolTheme(screen_num, name, alt_name),
9 m_pic_color(*this, name + ".picColor", alt_name + ".PicColor"), 9 m_pic_color(*this, name + ".picColor", alt_name + ".PicColor"),
10 m_pressed_texture(*this, name + ".pressed", alt_name + ".Pressed"), 10 m_pressed_texture(*this, name + ".pressed", alt_name + ".Pressed"),
11 m_gc(RootWindow(FbTk::App::instance()->display(), screen_num)) { 11 m_gc(RootWindow(FbTk::App::instance()->display(), screen_num)),
12 m_scale(*this, name + ".scale", alt_name + ".Scale") {
12 13
13} 14}
14 15