guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

111/197: gurses: Change highlighting from bold to inverse.


From: Danny Milosavljevic
Subject: 111/197: gurses: Change highlighting from bold to inverse.
Date: Mon, 3 Jul 2017 20:37:09 -0400 (EDT)

dannym pushed a commit to branch wip-installer-2
in repository guix.

commit fd0f867bc5eccc598f6c61095e3c1e206382fb3f
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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]