aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Bind
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-02-24 20:44:34 -0500
committerBob Arnson <bob@firegiant.com>2020-02-24 20:48:08 -0500
commitf56ab787834ce5ecb1b40f71fb7c7f6b470ab1e3 (patch)
tree52ef7a6f28a267961198cd84efabecbc8a622268 /src/WixToolset.Core.WindowsInstaller/Bind
parent8f642efb64859802c98e72676d48ac10b448bd0f (diff)
downloadwix-f56ab787834ce5ecb1b40f71fb7c7f6b470ab1e3.tar.gz
wix-f56ab787834ce5ecb1b40f71fb7c7f6b470ab1e3.tar.bz2
wix-f56ab787834ce5ecb1b40f71fb7c7f6b470ab1e3.zip
Fix File/@TrueType.
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Bind')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs
index 5707f7ce..3a165582 100644
--- a/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs
@@ -531,7 +531,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind
531 attributes |= (tuple.Attributes & FileTupleAttributes.Vital) == FileTupleAttributes.Vital ? WindowsInstallerConstants.MsidbFileAttributesVital : 0; 531 attributes |= (tuple.Attributes & FileTupleAttributes.Vital) == FileTupleAttributes.Vital ? WindowsInstallerConstants.MsidbFileAttributesVital : 0;
532 row.Attributes = attributes; 532 row.Attributes = attributes;
533 533
534 if (!String.IsNullOrEmpty(tuple.FontTitle)) 534 if (tuple.FontTitle != null)
535 { 535 {
536 var fontRow = this.CreateRow(tuple, "Font"); 536 var fontRow = this.CreateRow(tuple, "Font");
537 fontRow[0] = tuple.Id.Id; 537 fontRow[0] = tuple.Id.Id;