[Pkg-bazaar-commits] ./bzr-gtk/unstable r209: Set defaults correctly.

Jelmer Vernooij jelmer at samba.org
Fri Apr 10 07:45:33 UTC 2009


------------------------------------------------------------
revno: 209
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: trunk
timestamp: Fri 2007-07-13 23:22:58 +0300
message:
  Set defaults correctly.
modified:
  preferences.py
    ------------------------------------------------------------
    revno: 208.1.1
    committer: Jelmer Vernooij <jelmer at samba.org>
    branch nick: jelmer
    timestamp: Sat 2007-07-07 11:48:00 +0200
    message:
      Set default values.
    modified:
      preferences.py
-------------- next part --------------
=== modified file 'preferences.py'
--- a/preferences.py	2007-04-30 20:10:40 +0000
+++ b/preferences.py	2007-07-07 09:48:00 +0000
@@ -72,7 +72,7 @@
 
         align = gtk.Alignment(0.0, 0.5)
         self.check_sigs = gtk.Entry()
-        #self.check_sigs.set_text(self.config.signature_checking())
+        self.check_sigs.set_text(self.config.signature_checking())
         align.add(self.check_sigs)
         table.attach(align, 1, 2, 2, 3, gtk.EXPAND | gtk.FILL, gtk.FILL)
 
@@ -84,14 +84,12 @@
 
         align = gtk.Alignment(0.0, 0.5)
         self.create_sigs = gtk.Entry()
-        #self.create_sigs.set_text(self.config.signing_policy())
+        self.create_sigs.set_text(self.config.signing_policy())
         align.add(self.create_sigs)
         table.attach(align, 1, 2, 3, 4, gtk.EXPAND | gtk.FILL, gtk.FILL)
 
         return table
 
-
-
     def _create_pluginpage(self):
         vbox = gtk.VBox(False, 2)
         vbox.set_border_width(6)



More information about the Pkg-bazaar-commits mailing list