aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/ControlTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/ControlTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/ControlTuple.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Data/Tuples/ControlTuple.cs b/src/WixToolset.Data/Tuples/ControlTuple.cs
index f0fd92c1..ed61392e 100644
--- a/src/WixToolset.Data/Tuples/ControlTuple.cs
+++ b/src/WixToolset.Data/Tuples/ControlTuple.cs
@@ -119,9 +119,9 @@ namespace WixToolset.Data.Tuples
119 set => this.Set((int)ControlTupleFields.Height, value); 119 set => this.Set((int)ControlTupleFields.Height, value);
120 } 120 }
121 121
122 public int Attributes 122 public int? Attributes
123 { 123 {
124 get => this.Fields[(int)ControlTupleFields.Attributes].AsNumber(); 124 get => (int?)this.Fields[(int)ControlTupleFields.Attributes];
125 set => this.Set((int)ControlTupleFields.Attributes, value); 125 set => this.Set((int)ControlTupleFields.Attributes, value);
126 } 126 }
127 127