mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 14:24:39 -07:00
* screen-profiles-helper: drop the "recommended" pointer
This commit is contained in:
parent
5cab15b5c3
commit
fdd3a24752
2 changed files with 3 additions and 6 deletions
3
debian/changelog
vendored
3
debian/changelog
vendored
|
@ -2,8 +2,9 @@ screen-profiles (1.16) UNRELEASED; urgency=low
|
||||||
|
|
||||||
* select-screen-profile: limit erroneous attempts to 5; make the "plain"
|
* select-screen-profile: limit erroneous attempts to 5; make the "plain"
|
||||||
profile default; remove the "recommended" pointer
|
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
|
screen-profiles (1.15-0ubuntu1) jaunty; urgency=low
|
||||||
|
|
||||||
|
|
|
@ -150,10 +150,6 @@ def profile(screen, size):
|
||||||
li = Listbox(height = 6, width = 60, returnExit = 1)
|
li = Listbox(height = 6, width = 60, returnExit = 1)
|
||||||
|
|
||||||
for choice in commands.getoutput('select-screen-profile -l').splitlines():
|
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)
|
bb = ButtonBar(screen, ((_("Apply"), "apply"), (_("Cancel"), "cancel")), compact = 1)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue