/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 diffwin.py

  • Committer: Michael Ellerman
  • Date: 2006-05-16 14:01:50 UTC
  • mto: (55.1.4 bzr-gtk)
  • mto: This revision was merged to the branch mainline in revision 58.
  • Revision ID: michael@ellerman.id.au-20060516140150-a33713e46714ad9c
Remove the border on the diff window, so that when maximized the scroll
bar sits on the right screen edge and is easier to hit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
    def construct(self):
52
52
        """Construct the window contents."""
53
53
        hbox = gtk.HBox(spacing=6)
54
 
        hbox.set_border_width(12)
 
54
        hbox.set_border_width(0)
55
55
        self.add(hbox)
56
56
        hbox.show()
57
57