[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/26: gurses: Change highlighting from bold to inverse.
From: |
John Darrington |
Subject: |
07/26: gurses: Change highlighting from bold to inverse. |
Date: |
Sun, 22 Jan 2017 12:09:24 +0000 (UTC) |
jmd pushed a commit to branch wip-installer
in repository guix.
commit 4b21f45d3409b6dfd8c7fd015b827e0859edd5e7
Author: John Darrington <address@hidden>
Date: Tue Jan 17 11:40:22 2017 +0100
gurses: Change highlighting from bold to inverse.
* gurses/buttons.scm (buttons-post): bold --> inverse.
---
gurses/buttons.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gurses/buttons.scm b/gurses/buttons.scm
index a893494..49853d6 100644
--- a/gurses/buttons.scm
+++ b/gurses/buttons.scm
@@ -135,7 +135,11 @@
(if (and (eq? c #\_) use-underscore)
output
(cons
- (if us (bold c) (normal c))
+ (if us
+ ;; On some terminals bold isn't
visible
+ ;; Inverse is much clearer.
+ (inverse c)
+ (normal c))
output))
(cdr input))))))
(label (car label.mark))
- branch wip-installer updated (613ab98 -> 61c0ffb), John Darrington, 2017/01/22
- 02/26: installer: Properly handle swap partitions when generating the configuration., John Darrington, 2017/01/22
- 07/26: gurses: Change highlighting from bold to inverse.,
John Darrington <=
- 04/26: installer: Do not add file systems which are invalid., John Darrington, 2017/01/22
- 10/26: installer: Check that swap spaces have not been assigned mount points, John Darrington, 2017/01/22
- 14/26: installer: Distinguish between Wifi encryption methods., John Darrington, 2017/01/22
- 01/26: installer: Extend the 'file-system' concept to include swap spaces., John Darrington, 2017/01/22
- 21/26: installer: Do not assume the root file system is of type "ext4"., John Darrington, 2017/01/22
- 17/26: installer: Note which types of file system are supported., John Darrington, 2017/01/22
- 25/26: installer: Emphasise that writing filesystems destroys existing data., John Darrington, 2017/01/22
- 05/26: installer: Fix bug where the selected item of main page was not indicated., John Darrington, 2017/01/22
- 08/26: gurses: form: Use match instead of car, cdr etc., John Darrington, 2017/01/22
- 03/26: installer: Do not allow the creation of invalid file-system specificaitons., John Darrington, 2017/01/22