aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/DialogsInInstallUISequence
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-07-26 23:06:40 -0400
committerBob Arnson <bob@firegiant.com>2020-07-26 23:13:18 -0400
commit581897da13bd8a20eea0c2079262caaa06cde676 (patch)
tree7af47231adcb2eef5458db3d965b3abadbb6ab04 /src/test/WixToolsetTest.CoreIntegration/TestData/DialogsInInstallUISequence
parentb62a7a0beb7ceb7987de28ec768c7814cadb83b9 (diff)
downloadwix-581897da13bd8a20eea0c2079262caaa06cde676.tar.gz
wix-581897da13bd8a20eea0c2079262caaa06cde676.tar.bz2
wix-581897da13bd8a20eea0c2079262caaa06cde676.zip
Fix Control symbol dehydration to MSI output.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/DialogsInInstallUISequence')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/DialogsInInstallUISequence/PackageComponents.wxs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/DialogsInInstallUISequence/PackageComponents.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/DialogsInInstallUISequence/PackageComponents.wxs
index c6deb864..10c8b2c3 100644
--- a/src/test/WixToolsetTest.CoreIntegration/TestData/DialogsInInstallUISequence/PackageComponents.wxs
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/DialogsInInstallUISequence/PackageComponents.wxs
@@ -10,6 +10,7 @@
10 <Dialog Id="SecondDialog" Width="100" Height="100"> 10 <Dialog Id="SecondDialog" Width="100" Height="100">
11 <Control Id="Title" Type="Text" X="0" Y="0" Width="90" Height="13" TabSkip="no" Text="SecondDialogTitle" /> 11 <Control Id="Title" Type="Text" X="0" Y="0" Width="90" Height="13" TabSkip="no" Text="SecondDialogTitle" />
12 <Control Id="OptionalCheckBox" Type="CheckBox" X="0" Y="13" Width="100" Height="40" Hidden="yes" Property="WIXUI_EXITDIALOGOPTIONALCHECKBOX" CheckBoxValue="1" Text="[WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT]" 12 <Control Id="OptionalCheckBox" Type="CheckBox" X="0" Y="13" Width="100" Height="40" Hidden="yes" Property="WIXUI_EXITDIALOGOPTIONALCHECKBOX" CheckBoxValue="1" Text="[WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT]"
13 ToolTip="Optional checkbox" Help="Check this box for fun"
13 ShowCondition="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT AND NOT Installed" /> 14 ShowCondition="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT AND NOT Installed" />
14 </Dialog> 15 </Dialog>
15 16