aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-01-02 16:01:36 -0600
committerSean Hall <r.sean.hall@gmail.com>2021-01-03 16:19:55 -0600
commit12b3db746300a6c279329baf2ad263a76abb8ef6 (patch)
tree484daf83280b8e007d279356dcdb4ccd9bd7abb4 /src
parentbd595d0beca939387b3639eb938a4810e53a8338 (diff)
downloadwix-12b3db746300a6c279329baf2ad263a76abb8ef6.tar.gz
wix-12b3db746300a6c279329baf2ad263a76abb8ef6.tar.bz2
wix-12b3db746300a6c279329baf2ad263a76abb8ef6.zip
Fix bug where default theme for MBA needs to be Standard.
Diffstat (limited to 'src')
-rw-r--r--src/wixext/BalCompiler.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/wixext/BalCompiler.cs b/src/wixext/BalCompiler.cs
index eab374ce..441ad004 100644
--- a/src/wixext/BalCompiler.cs
+++ b/src/wixext/BalCompiler.cs
@@ -750,6 +750,11 @@ namespace WixToolset.Bal
750 } 750 }
751 } 751 }
752 752
753 if (!theme.HasValue)
754 {
755 theme = WixManagedBootstrapperApplicationHostTheme.Standard;
756 }
757
753 this.ParseHelper.ParseForExtensionElements(this.Context.Extensions, intermediate, section, node); 758 this.ParseHelper.ParseForExtensionElements(this.Context.Extensions, intermediate, section, node);
754 759
755 if (!this.Messaging.EncounteredError) 760 if (!this.Messaging.EncounteredError)