* screen-profiles-helper: drop the "recommended" pointer

This commit is contained in:
Dustin Kirkland 2009-01-27 14:13:06 -05:00
commit fdd3a24752
2 changed files with 3 additions and 6 deletions

3
debian/changelog vendored
View file

@ -2,8 +2,9 @@ screen-profiles (1.16) UNRELEASED; urgency=low
* select-screen-profile: limit erroneous attempts to 5; make the "plain"
profile default; remove the "recommended" pointer
* screen-profiles-helper: drop the "recommended" pointer
-- Dustin Kirkland <kirkland@ubuntu.com> Tue, 27 Jan 2009 12:36:44 -0500
-- Dustin Kirkland <kirkland@ubuntu.com> Tue, 27 Jan 2009 14:12:44 -0500
screen-profiles (1.15-0ubuntu1) jaunty; urgency=low

View file

@ -150,11 +150,7 @@ def profile(screen, size):
li = Listbox(height = 6, width = 60, returnExit = 1)
for choice in commands.getoutput('select-screen-profile -l').splitlines():
if choice.startswith("ubuntu"):
li.append(choice+_(" <-- recommended"), choice)
li.setCurrent(choice)
else:
li.append(choice, choice)
li.append(choice, choice)
bb = ButtonBar(screen, ((_("Apply"), "apply"), (_("Cancel"), "cancel")), compact = 1)