Disabled Network login option

release2
Tomasz Sterna 14 years ago
parent b99bd7a1f8
commit 2c1170c044

@ -260,22 +260,22 @@ class moduleClass(Module):
self.vbox.pack_start(table, False) self.vbox.pack_start(table, False)
label = gtk.Label(_("If you need to use network authentication, such as Kerberos or NIS, " # label = gtk.Label(_("If you need to use network authentication, such as Kerberos or NIS, "
"please click the Use Network Login button.")) # "please click the Use Network Login button."))
#
label.set_line_wrap(True) # label.set_line_wrap(True)
label.set_alignment(0.0, 0.5) # label.set_alignment(0.0, 0.5)
label.set_size_request(500, -1) # label.set_size_request(500, -1)
self.vbox.pack_start(label, False, True, padding=20) # self.vbox.pack_start(label, False, True, padding=20)
#
authHBox = gtk.HBox() # authHBox = gtk.HBox()
authButton = gtk.Button(_("Use Network _Login...")) # authButton = gtk.Button(_("Use Network _Login..."))
authButton.connect("clicked", self._runAuthconfig) # authButton.connect("clicked", self._runAuthconfig)
align = gtk.Alignment() # align = gtk.Alignment()
align.add(authButton) # align.add(authButton)
align.set(0.0, 0.5, 0.0, 1.0) # align.set(0.0, 0.5, 0.0, 1.0)
authHBox.pack_start(align, True) # authHBox.pack_start(align, True)
self.vbox.pack_start(authHBox, False, False) # self.vbox.pack_start(authHBox, False, False)
def focus(self): def focus(self):
self.usernameEntry.grab_focus() self.usernameEntry.grab_focus()

Loading…
Cancel
Save