/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 mergedirective.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:
45
45
 
46
46
    def _create(self):
47
47
        table = Gtk.Table(rows=3, columns=2)
48
 
        self.get_content_area().add(table)
 
48
        self.vbox.add(table)
49
49
 
50
50
        label = Gtk.Label()
51
51
        label.set_markup("<b>Branch to Submit:</b>")
61
61
        self.submit_branch = BranchSelectionBox(self.branch.get_submit_branch())
62
62
        table.attach(self.submit_branch, 1, 2, 1, 2, Gtk.AttachOptions.FILL, Gtk.AttachOptions.FILL)
63
63
 
64
 
        # TODO: Display number of revisions to be sent whenever 
 
64
        # TODO: Display number of revisions to be send whenever 
65
65
        # submit branch changes
66
66
 
67
67
        label = Gtk.Label()
68
68
        label.set_markup("<b>Email To:</b>")
69
69
        table.attach(label, 0, 1, 2, 3, Gtk.AttachOptions.FILL, Gtk.AttachOptions.FILL)
70
70
 
71
 
        self.mail_to = Gtk.ComboBox.new_with_entry()
 
71
        self.mail_to = Gtk.ComboBoxEntry()
72
72
        mail_to = self.branch.get_config().get_user_option('submit_to')
73
73
        if mail_to is None:
74
74
            submit_branch = self.submit_branch.get_branch()