installer: Clear screen upon exit.
* gnu/installer/newt.scm (exit): Call clear-screen after newt-finish, (exit-error): ditto.
This commit is contained in:
parent
bf304dbcea
commit
df3664f1ec
|
@ -47,7 +47,8 @@
|
|||
(set-screen-size!))
|
||||
|
||||
(define (exit)
|
||||
(newt-finish))
|
||||
(newt-finish)
|
||||
(clear-screen))
|
||||
|
||||
(define (exit-error file key args)
|
||||
(newt-set-color COLORSET-ROOT "white" "red")
|
||||
|
@ -66,7 +67,8 @@ problem. The backtrace is displayed below. Please report it by email to \
|
|||
#:file-textbox-width width
|
||||
#:file-textbox-height height))
|
||||
(newt-set-color COLORSET-ROOT "white" "blue")
|
||||
(newt-finish))
|
||||
(newt-finish)
|
||||
(clear-screen))
|
||||
|
||||
(define (final-page result prev-steps)
|
||||
(run-final-page result prev-steps))
|
||||
|
|
Loading…
Reference in New Issue