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

  • Committer: Curtis Hovey
  • Date: 2011-08-12 20:25:28 UTC
  • mto: This revision was merged to the branch mainline in revision 741.
  • Revision ID: sinzui.is@verizon.net-20110812202528-4xf4a2t23urx50d2
Updated gst to gtk3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
        cell = Gtk.CellRendererText()
75
75
        cell.set_property("width-chars", 20)
76
76
        column = Gtk.TreeViewColumn()
77
 
        column.pack_start(cell, True, True, 0)
 
77
        column.pack_start(cell, True)
78
78
        column.add_attribute(cell, "text", 0)
79
79
        self.treeview.append_column(column)
80
80