/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to viz/branchwin.py

  • Committer: Curtis Hovey
  • Date: 2011-08-12 19:58:53 UTC
  • mto: This revision was merged to the branch mainline in revision 741.
  • Revision ID: sinzui.is@verizon.net-20110812195853-hveqgdof62g5eoq7
pass all the required args to pack_start().

Show diffs side-by-side

added added

removed removed

Lines of Context:
122
122
        nav = self.construct_navigation()
123
123
        menubar = self.construct_menubar()
124
124
 
125
 
        vbox.pack_start(menubar, expand=False, fill=True)
126
 
        vbox.pack_start(nav, expand=False, fill=True)
127
 
        vbox.pack_start(paned, expand=True, fill=True)
 
125
        vbox.pack_start(menubar, False, True, True, 0)
 
126
        vbox.pack_start(nav, False, True,True, 0)
 
127
        vbox.pack_start(paned, True, True, True, 0)
128
128
        vbox.set_focus_child(paned)
129
129
 
130
130
 
561
561
 
562
562
        old = self.paned
563
563
        self.vbox.remove(old)
564
 
        self.vbox.pack_start(self.construct_paned(, True, True, 0), expand=True, fill=True)
 
564
        self.vbox.pack_start(
 
565
            self.construct_paned(, True, True, 0), True, True, True, 0)
565
566
        self._make_diff_paned_nonzero_size()
566
567
        self._make_diff_nonzero_size()
567
568