diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2021-01-02 16:01:36 -0600 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2021-01-03 16:19:55 -0600 |
| commit | 12b3db746300a6c279329baf2ad263a76abb8ef6 (patch) | |
| tree | 484daf83280b8e007d279356dcdb4ccd9bd7abb4 | |
| parent | bd595d0beca939387b3639eb938a4810e53a8338 (diff) | |
| download | wix-12b3db746300a6c279329baf2ad263a76abb8ef6.tar.gz wix-12b3db746300a6c279329baf2ad263a76abb8ef6.tar.bz2 wix-12b3db746300a6c279329baf2ad263a76abb8ef6.zip | |
Fix bug where default theme for MBA needs to be Standard.
| -rw-r--r-- | src/wixext/BalCompiler.cs | 5 |
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) |
