aboutsummaryrefslogtreecommitdiff
path: root/src/Toolbar.cc
diff options
context:
space:
mode:
authorrathnor <rathnor>2004-06-21 15:23:42 (GMT)
committerrathnor <rathnor>2004-06-21 15:23:42 (GMT)
commit965086f39d807fc83b6b2605b7858a9baa9ee2f0 (patch)
treec19745edf475b209b2c5c06b04812062276e4269 /src/Toolbar.cc
parent6a51cefb2f67c041f19cbb3842adb81ff54b4771 (diff)
downloadfluxbox-965086f39d807fc83b6b2605b7858a9baa9ee2f0.zip
fluxbox-965086f39d807fc83b6b2605b7858a9baa9ee2f0.tar.bz2
tidying up initialisation with dockapps
Diffstat (limited to 'src/Toolbar.cc')
-rw-r--r--src/Toolbar.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Toolbar.cc b/src/Toolbar.cc
index c72e54c..2a39ec0 100644
--- a/src/Toolbar.cc
+++ b/src/Toolbar.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: Toolbar.cc,v 1.145 2004/06/20 10:29:51 rathnor Exp $ 25// $Id: Toolbar.cc,v 1.146 2004/06/21 15:23:42 rathnor Exp $
26 26
27#include "Toolbar.hh" 27#include "Toolbar.hh"
28 28
@@ -230,7 +230,6 @@ Toolbar::Toolbar(BScreen &scrn, FbTk::XLayer &layer, size_t width):
230 m_theme.reconfigSig().attach(this); 230 m_theme.reconfigSig().attach(this);
231 // listen to screen size changes 231 // listen to screen size changes
232 screen().resizeSig().attach(this); 232 screen().resizeSig().attach(this);
233 screen().reconfigureSig().attach(this); // if alpha value changes
234 233
235 moveToLayer((*m_rc_layernum).getNum()); 234 moveToLayer((*m_rc_layernum).getNum());
236 235
@@ -267,7 +266,7 @@ Toolbar::Toolbar(BScreen &scrn, FbTk::XLayer &layer, size_t width):
267 // setup to listen to child events 266 // setup to listen to child events
268 FbTk::EventManager::instance()->addParent(*this, window()); 267 FbTk::EventManager::instance()->addParent(*this, window());
269 // get everything together 268 // get everything together
270 //reconfigure(); 269 reconfigure();
271 // this gets done by the screen later as it loads 270 // this gets done by the screen later as it loads
272 271
273} 272}