/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: Daniel Schierbeck
  • Date: 2007-10-02 22:23:13 UTC
  • mto: This revision was merged to the branch mainline in revision 295.
  • Revision ID: daniel.schierbeck@gmail.com-20071002222313-4ygnpfmjwcplds9l
Changed title of the viz window to 'revision history'

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
    def __init__(self, parent=None):
32
32
        gtk.Window.__init__(self, gtk.WINDOW_TOPLEVEL)
33
33
        self.set_border_width(0)
34
 
        self.set_title("bzrk")
 
34
        self.set_title("Revision history")
35
35
 
36
36
        self._parent = parent
37
37
 
190
190
        treeview itself.
191
191
        """
192
192
        self.branch = branch
193
 
        self.set_title(branch.nick + " - bzrk")
 
193
        self.set_title(branch.nick + " - revision history")
194
194
        gobject.idle_add(self.populate_model, start, maxnum)
195
195
 
196
196
    def populate_model(self, start, maxnum):