~glitter-team/glitter/trunk

« back to all changes in this revision

Viewing changes to glitter/toolbar.py

  • Committer: Jan Jokela
  • Date: 2009-04-03 13:54:00 UTC
  • mto: (38.2.2 trunk)
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: jan@jan-laptop-20090403135400-w55mhbrkn77fbkcq
(glitter/box.py) Algorithm improvements

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
        self._background_image = None
30
30
        
31
31
        super(Toolbar, self).__init__()
32
 
        
33
 
        #self._init_elements()
34
 
        
35
 
        #self._update_style(self.style)
36
32
 
37
33
    def _init_elements(self):
38
34
        """ Initializes graphical elements """
62
58
        self._background_image._update_layout() 
63
59
            
64
60
        
65
 
#    def add(self, child):
66
 
#        """ Overrides clutter.Actor--add(child) method; calls layout update """
67
 
#        
68
 
#        super(Toolbar, self).add(child)
69
 
#        
70
 
#        self._update_layout()
71
61
    
72
62