Nicer word wrapping

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2053 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2003-01-09 20:13:10 +00:00
parent 2aac51c0f0
commit aa369c899c

View file

@ -1,14 +1,17 @@
# This example demonstrates how to control section selection # This example demonstrates how to control section selection.
# It allows only one of the four optional section to be selected at any given time # It allows only one of the four optional section to be
# selected at any given time.
# #
# Please note that the initial value will not be what you expect it to be if you are # Please note that the initial value will not be what you expect
# are using InstType because InstType is taken into consideration after the .onInit, # it to be if you are are using InstType because InstType is taken
# where the initial state is set, executes. # into consideration after the .onInit, where the initial state is
# To use this code with InstType you will either have to specify you first InstType # set, executes.
# to match the initial value you set in .onInit (only StrCpy $1 ${sec1} is important # To use this code with InstType you will either have to specify
# in this case because the other set the section and that will be done by InstType), # you first InstType to match the initial value you set in .onInit
# or set the initial section selection from .onSelChange when it is called for the # (only StrCpy $1 ${sec1} is important in this case because the
# first time. # other set the section and that will be done by InstType), or set
# the initial section selection from .onSelChange when it is called
# for the first time.
Name example Name example
OutFile one-section.exe OutFile one-section.exe