[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
51/80: installer: Use consistent window heights.
From: |
John Darrington |
Subject: |
51/80: installer: Use consistent window heights. |
Date: |
Tue, 3 Jan 2017 15:49:44 +0000 (UTC) |
jmd pushed a commit to branch wip-installer
in repository guix.
commit 2cf0b9f9e7df820198743a894844ea2b07598d1e
Author: John Darrington <address@hidden>
Date: Wed Dec 28 12:06:51 2016 +0100
installer: Use consistent window heights.
* gnu/system/installer/configure.scm: Adjust height of window.
* gnu/system/installer/install.scm: Adjust height of window.
* gnu/system/installer/network.scm: Adjust height of window.
* gnu/system/installer/ping.scm: Adjust height of window.
* gnu/system/installer/time-zone.scm: Adjust height of window.
* gnu/system/installer/wireless.scm: Adjust height of window.
---
gnu/system/installer/configure.scm | 2 +-
gnu/system/installer/install.scm | 2 +-
gnu/system/installer/network.scm | 2 +-
gnu/system/installer/ping.scm | 2 +-
gnu/system/installer/time-zone.scm | 2 +-
gnu/system/installer/wireless.scm | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/gnu/system/installer/configure.scm
b/gnu/system/installer/configure.scm
index 1013116..20b766b 100644
--- a/gnu/system/installer/configure.scm
+++ b/gnu/system/installer/configure.scm
@@ -157,7 +157,7 @@
(define (configure-page-init p)
(let* ((s (page-surface p))
(pr (make-boxed-window #f
- (- (getmaxy s) 3) (- (getmaxx s) 2)
+ (- (getmaxy s) 4) (- (getmaxx s) 2)
2 1
#:title (page-title p)))
diff --git a/gnu/system/installer/install.scm b/gnu/system/installer/install.scm
index 108ff5b..8521b30 100644
--- a/gnu/system/installer/install.scm
+++ b/gnu/system/installer/install.scm
@@ -129,7 +129,7 @@
(define (install-page-init p)
(let* ((s (page-surface p))
(pr (make-boxed-window #f
- (- (getmaxy s) 3) (- (getmaxx s) 2)
+ (- (getmaxy s) 4) (- (getmaxx s) 2)
2 1
#:title (page-title p)))
(text-window (derwin
diff --git a/gnu/system/installer/network.scm b/gnu/system/installer/network.scm
index 6b954d9..d26ca1e 100644
--- a/gnu/system/installer/network.scm
+++ b/gnu/system/installer/network.scm
@@ -134,7 +134,7 @@
(define (network-page-init p)
(let* ((s (page-surface p))
(pr (make-boxed-window #f
- (- (getmaxy s) 3) (- (getmaxx s) 2)
+ (- (getmaxy s) 4) (- (getmaxx s) 2)
2 1
#:title (page-title p)))
(text-window (derwin
diff --git a/gnu/system/installer/ping.scm b/gnu/system/installer/ping.scm
index 2adee6f..7b8db35 100644
--- a/gnu/system/installer/ping.scm
+++ b/gnu/system/installer/ping.scm
@@ -87,7 +87,7 @@
(define (ping-page-init p)
(let* ((s (page-surface p))
(frame (make-boxed-window #f
- (- (getmaxy s) 5) (- (getmaxx s) 2)
+ (- (getmaxy s) 4) (- (getmaxx s) 2)
2 1
#:title (page-title p)))
(button-window (derwin (inner frame)
diff --git a/gnu/system/installer/time-zone.scm
b/gnu/system/installer/time-zone.scm
index c7e6d08..3a31a45 100644
--- a/gnu/system/installer/time-zone.scm
+++ b/gnu/system/installer/time-zone.scm
@@ -99,7 +99,7 @@
(define (file-browser-page-init p)
(let* ((s (page-surface p))
(frame (make-boxed-window #f
- (- (getmaxy s) 5) (- (getmaxx s) 2)
+ (- (getmaxy s) 4) (- (getmaxx s) 2)
2 1
#:title (page-title p)))
(button-window (derwin (inner frame)
diff --git a/gnu/system/installer/wireless.scm
b/gnu/system/installer/wireless.scm
index 5e04acf..d0bfce7 100644
--- a/gnu/system/installer/wireless.scm
+++ b/gnu/system/installer/wireless.scm
@@ -111,7 +111,7 @@ network={
(define (essid-page-init p)
(let* ((s (page-surface p))
(pr (make-boxed-window #f
- (- (getmaxy s) 3) (- (getmaxx s) 2)
+ (- (getmaxy s) 4) (- (getmaxx s) 2)
2 1
#:title (page-title p)))
(text-window (derwin
- 70/80: installer: Change essid --> wireless., (continued)
- 70/80: installer: Change essid --> wireless., John Darrington, 2017/01/03
- 52/80: installer: Fix bug where window-pipe did not return the proper exit status., John Darrington, 2017/01/03
- 78/80: installer: Rename "file-browser" -> "time-zone"., John Darrington, 2017/01/03
- 75/80: installer: Add predicate for the network task., John Darrington, 2017/01/03
- 50/80: installer: Rename module "new" to "guixsd-installer"., John Darrington, 2017/01/03
- 54/80: installer: Improve install page., John Darrington, 2017/01/03
- 62/80: installer: Use global variable instead of string literal for "/gnu"., John Darrington, 2017/01/03
- 63/80: installer: Do not use /tmp for holding the configuration., John Darrington, 2017/01/03
- 56/80: installer: Replace spawned mount command with the mount syscall., John Darrington, 2017/01/03
- 53/80: installer: Replace "%temporary-configuration-file-port" with "config-file"., John Darrington, 2017/01/03
- 51/80: installer: Use consistent window heights.,
John Darrington <=
- 15/80: installer: Add procedures to replace car/cdr since these are frounded upon by Guile gurus., John Darrington, 2017/01/03
- 65/80: installer: Add flags to indicate network interface status., John Darrington, 2017/01/03
- 66/80: installer: Format configuration to fix width of window., John Darrington, 2017/01/03
- 80/80: installer: Use --fallback when installing., John Darrington, 2017/01/03
- 69/80: installer: Add page with which the wifi password can be entered., John Darrington, 2017/01/03
- 60/80: installer: Change N_ from a procedure to a macro., John Darrington, 2017/01/03
- 67/80: installer: Do not allow forms to set the cursor visibility., John Darrington, 2017/01/03
- 74/80: installer: Add option to final page to reboot the system., John Darrington, 2017/01/03
- 77/80: installer: Remove "continue" button from host name page., John Darrington, 2017/01/03
- 76/80: installer: Add new page to set the system role., John Darrington, 2017/01/03