From 12b3db746300a6c279329baf2ad263a76abb8ef6 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Sat, 2 Jan 2021 16:01:36 -0600 Subject: Fix bug where default theme for MBA needs to be Standard. --- src/wixext/BalCompiler.cs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src') 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 } } + if (!theme.HasValue) + { + theme = WixManagedBootstrapperApplicationHostTheme.Standard; + } + this.ParseHelper.ParseForExtensionElements(this.Context.Extensions, intermediate, section, node); if (!this.Messaging.EncounteredError) -- cgit v1.2.3-55-g6feb