/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: Daniel Schierbeck
  • Date: 2008-01-23 16:36:21 UTC
  • mto: (423.1.8 trunk)
  • mto: This revision was merged to the branch mainline in revision 429.
  • Revision ID: daniel.schierbeck@gmail.com-20080123163621-x8kublc38ojipnly
Made the revision popup menu correctly add tags.

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
 
79
79
        self.mail_to = gtk.ComboBoxEntry()
80
80
        mail_to = self.branch.get_config().get_user_option('submit_to')
81
 
        if mail_to is None:
82
 
            submit_branch = self.submit_branch.get_branch()
83
 
            if submit_branch is not None:
84
 
                mail_to = submit_branch.get_config().get_user_option(
85
 
                            'child_submit_to')
86
81
        if mail_to is not None:
87
82
            self.mail_to.get_child().set_text(mail_to)
88
83
        table.attach(self.mail_to, 1, 2, 2, 3, gtk.FILL, gtk.FILL)