/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: Jelmer Vernooij
  • Date: 2007-03-20 21:09:30 UTC
  • Revision ID: jelmer@samba.org-20070320210930-0650s8sy7nue5vyo
Don't use scrolling inside revisions in missing window.

Show diffs side-by-side

added added

removed removed

Lines of Context:
147
147
        """Construct the bottom half of the window."""
148
148
        from bzrlib.plugins.gtk.logview import LogView
149
149
        self.logview = LogView()
150
 
        self.logview.set_policy(gtk.POLICY_NEVER, gtk.POLICY_AUTOMATIC)
151
 
        self.logview.set_shadow_type(gtk.SHADOW_NONE)
152
150
        (width, height) = self.get_size()
153
151
        self.logview.set_size_request(width, int(height / 2.5))
154
152
        self.logview.show()