[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
80/197: installer: Ignore case in button accelerators.
From: |
Danny Milosavljevic |
Subject: |
80/197: installer: Ignore case in button accelerators. |
Date: |
Mon, 3 Jul 2017 20:37:04 -0400 (EDT) |
dannym pushed a commit to branch wip-installer-2
in repository guix.
commit a03f5ce4c54b9144a42364920e57b9e1c43d85bc
Author: John Darrington <address@hidden>
Date: Sat Jan 7 08:53:07 2017 +0100
installer: Ignore case in button accelerators.
* gurses/buttons.scm (buttons-key-matches-symbol): Check upper and lower
case matches.
---
gurses/buttons.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gurses/buttons.scm b/gurses/buttons.scm
index 7b1c666..8be4983 100644
--- a/gurses/buttons.scm
+++ b/gurses/buttons.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2016 John Darrington <address@hidden>
+;;; Copyright © 2016, 2017 John Darrington <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -152,7 +152,8 @@
(define (buttons-key-matches-symbol? nav ch symbol)
(if (char? ch)
- (or (eq? (buttons-fetch-by-key nav (char-upcase ch)) symbol)
+ (or (eq? (buttons-fetch-by-key nav (char-downcase ch)) symbol)
+ (eq? (buttons-fetch-by-key nav (char-upcase ch)) symbol)
(and (or (eq? ch #\newline)
(eq? ch #\space))
(and=> (buttons-get-current-selection nav)
- 14/197: installer: Add procedures to replace car/cdr since these are frounded upon by Guile gurus., (continued)
- 14/197: installer: Add procedures to replace car/cdr since these are frounded upon by Guile gurus., Danny Milosavljevic, 2017/07/03
- 55/197: installer: Use global variable instead of string literal for "/gnu"., Danny Milosavljevic, 2017/07/03
- 54/197: installer: Change the order of the filesystem task conditions., Danny Milosavljevic, 2017/07/03
- 60/197: installer: Do not allow forms to set the cursor visibility., Danny Milosavljevic, 2017/07/03
- 56/197: installer: Do not use /tmp for holding the configuration., Danny Milosavljevic, 2017/07/03
- 66/197: installer: Add option to final page to reboot the system., Danny Milosavljevic, 2017/07/03
- 71/197: installer: Add confidence indicator., Danny Milosavljevic, 2017/07/03
- 67/197: installer: Add predicate for the network task., Danny Milosavljevic, 2017/07/03
- 74/197: installer: Remove explicit calls to curs-set from pages., Danny Milosavljevic, 2017/07/03
- 64/197: installer: Make setting up of the network a prerequisite., Danny Milosavljevic, 2017/07/03
- 80/197: installer: Ignore case in button accelerators.,
Danny Milosavljevic <=
- 86/197: installer: slurp: Ignore blank lines in output., Danny Milosavljevic, 2017/07/03
- 76/197: installer: New procedure "page-leave"., Danny Milosavljevic, 2017/07/03
- 84/197: installer: Use guix build syscalls module for network interrogation., Danny Milosavljevic, 2017/07/03
- 94/197: installer: Add the notion of uuids to prospective filesystems., Danny Milosavljevic, 2017/07/03
- 89/197: installer: Make the network menu more reliable., Danny Milosavljevic, 2017/07/03
- 90/197: installer: Enable direct scrolling to top or bottom of menus., Danny Milosavljevic, 2017/07/03
- 78/197: installer: Ensure that the cursor visibility is updated on each page., Danny Milosavljevic, 2017/07/03
- 107/197: installer: Do not allow the creation of invalid file-system specificaitons., Danny Milosavljevic, 2017/07/03
- 57/197: installer: Add a console-keymap service., Danny Milosavljevic, 2017/07/03
- 69/197: installer: Remove "continue" button from host name page., Danny Milosavljevic, 2017/07/03