aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller')
-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;