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

  • Committer: Jelmer Vernooij
  • Date: 2007-07-07 09:48:00 UTC
  • mto: This revision was merged to the branch mainline in revision 209.
  • Revision ID: jelmer@samba.org-20070707094800-7y52jbeek3aj1xhq
Set default values.

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
 
73
73
        align = gtk.Alignment(0.0, 0.5)
74
74
        self.check_sigs = gtk.Entry()
75
 
        #self.check_sigs.set_text(self.config.signature_checking())
 
75
        self.check_sigs.set_text(self.config.signature_checking())
76
76
        align.add(self.check_sigs)
77
77
        table.attach(align, 1, 2, 2, 3, gtk.EXPAND | gtk.FILL, gtk.FILL)
78
78
 
84
84
 
85
85
        align = gtk.Alignment(0.0, 0.5)
86
86
        self.create_sigs = gtk.Entry()
87
 
        #self.create_sigs.set_text(self.config.signing_policy())
 
87
        self.create_sigs.set_text(self.config.signing_policy())
88
88
        align.add(self.create_sigs)
89
89
        table.attach(align, 1, 2, 3, 4, gtk.EXPAND | gtk.FILL, gtk.FILL)
90
90
 
91
91
        return table
92
92
 
93
 
 
94
 
 
95
93
    def _create_pluginpage(self):
96
94
        vbox = gtk.VBox(False, 2)
97
95
        vbox.set_border_width(6)