/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 preferences/identity.py

  • Committer: Jelmer Vernooij
  • Date: 2011-03-14 20:12:19 UTC
  • Revision ID: jelmer@samba.org-20110314201219-wo692nzwywu6mevh
Fix formatting, imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
import gtk
24
24
 
 
25
 
25
26
class IdentityPage(gtk.Table):
26
27
 
27
28
    def __init__(self, config):
58
59
        self.attach(align, 0, 1, 2, 3, gtk.FILL, gtk.FILL)
59
60
 
60
61
        sigvals = gtk.VBox()
61
 
        self.check_sigs_if_possible = gtk.RadioButton(None, 
 
62
        self.check_sigs_if_possible = gtk.RadioButton(None,
62
63
                                                      "_Check if possible")
63
64
        sigvals.pack_start(self.check_sigs_if_possible)
64
 
        self.check_sigs_always = gtk.RadioButton(self.check_sigs_if_possible, 
 
65
        self.check_sigs_always = gtk.RadioButton(self.check_sigs_if_possible,
65
66
                                                 "Check _always")
66
67
        sigvals.pack_start(self.check_sigs_always)
67
68
        self.check_sigs_never = gtk.RadioButton(self.check_sigs_if_possible,
77
78
        self.attach(align, 0, 1, 3, 4, gtk.FILL, gtk.FILL)
78
79
 
79
80
        create_sigs = gtk.VBox()
80
 
        self.create_sigs_when_required = gtk.RadioButton(None, 
 
81
        self.create_sigs_when_required = gtk.RadioButton(None,
81
82
                                                         "Sign When _Required")
82
83
        create_sigs.pack_start(self.create_sigs_when_required)
83
84
        self.create_sigs_always = gtk.RadioButton(