source: projects/specs/trunk/g/gdm2setup/gdm2setup-0.5.3-enable-show-userlist.patch @ 4235

Revision 4235, 992 bytes checked in by daisuke, 13 years ago (diff)

gdm2setup:

  • add patch4: ConfigParser? should be case-sensitive.
  • add patch5 to fix typo
  • add patch6 to enable show userlist even if autologin is enabled.
  • add patch7 to disable debug message
RevLine 
[4235]1diff -up gdm2setup-0.5.3-lucid/gdm2/gdm2setup.py.enable-show-userlist gdm2setup-0.5.3-lucid/gdm2/gdm2setup.py
2--- gdm2setup-0.5.3-lucid/gdm2/gdm2setup.py.enable-show-userlist        2011-06-28 20:50:59.782692463 +0900
3+++ gdm2setup-0.5.3-lucid/gdm2/gdm2setup.py     2011-06-28 20:51:20.011692463 +0900
4@@ -74,7 +74,7 @@ class GDM2Setup(object):   
5         if DEBUG:
6             print "on_userlist_checkbutton_toggled, value: ",widget.get_active()
7             
8-        self.theme.SetShowUserList(widget.get_active())
9+        self.theme.SetShowUserList(True)
10 
11     def on_autologin_radiobutton_toggled(self, widget, data=None):
12         if DEBUG:
13@@ -93,7 +93,7 @@ class GDM2Setup(object):   
14 
15         # Disable mutually exclusive properties
16         self.builder.get_object('userlist_checkbutton').set_sensitive(False)
17-        self.theme.SetShowUserList(False)
18+        # self.theme.SetShowUserList(False)
19 
20     def on_autologin_combobox_changed(self, widget, data=None):
21         if DEBUG:
Note: See TracBrowser for help on using the repository browser.