summaryrefslogtreecommitdiff
path: root/amiga/dist/Install
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2009-06-20 13:29:30 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2009-06-20 13:29:30 +0000
commit856fde9a4e5a2c6514c7abaef1cdefc9315eb045 (patch)
tree11ba4933724b70f1df1ee248e4a5ac50d05e0d5b /amiga/dist/Install
parent98092d7f16a10e5c55659942909bc797c09a2389 (diff)
downloadnetsurf-856fde9a4e5a2c6514c7abaef1cdefc9315eb045.tar.gz
netsurf-856fde9a4e5a2c6514c7abaef1cdefc9315eb045.tar.bz2
Don't ask for a screenmode when one is not set unless we actually need it.
Immediately save Options once the user has selected a screenmode. This now makes it possible to ask whether they want NetSurf to run on the Workbench or a new NetSurf screen during installation. svn path=/trunk/netsurf/; revision=7895
Diffstat (limited to 'amiga/dist/Install')
-rwxr-xr-xamiga/dist/Install15
1 files changed, 15 insertions, 0 deletions
diff --git a/amiga/dist/Install b/amiga/dist/Install
index 8b3b53430..db9f18c90 100755
--- a/amiga/dist/Install
+++ b/amiga/dist/Install
@@ -283,6 +283,20 @@
(set #theme "Resources/Themes/Default")
(set #theme "Resources/Themes/AISS")
)
+
+ (set #screen
+ (askchoice
+ (prompt "Please select whether to start NetSurf on a new screen or on Workbench")
+ (help @askchoice-help)
+ (choices "Own screen" "Workbench")
+ (default 0)
+ )
+ )
+
+ (select #screen
+ (set #pubscreen "")
+ (set #pubscreen "Workbench")
+ )
)
)
@@ -369,6 +383,7 @@
(help @textfile-help)
(dest (tackon @default-dest "Resources/Options"))
(append "theme:" #theme "\n")
+ (append "use_pubscreen:" #pubscreen "\n")
)
)
)