File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ public struct _GraphInputs {
144144
145145 package var animationsDisabled : Bool {
146146 get { options. contains ( . animationsDisabled) }
147- set { options. formUnion ( . animationsDisabled) }
147+ set { options. setValue ( newValue , for : . animationsDisabled) }
148148 }
149149
150150 package var needsStableDisplayListIDs : Bool {
Original file line number Diff line number Diff line change @@ -28,12 +28,12 @@ public struct _ViewInputs {
2828 set { base. customInputs = newValue }
2929 }
3030
31- package subscript< T> ( input: T . Type ) -> T . Value where T : ViewInput {
31+ package subscript< T> ( input: T . Type ) -> T . Value where T: ViewInput {
3232 get { base [ input] }
3333 set { base [ input] = newValue }
3434 }
3535
36- package subscript< T> ( input: T . Type ) -> T . Value where T : ViewInput , T. Value : GraphReusable {
36+ package subscript< T> ( input: T . Type ) -> T . Value where T: ViewInput , T. Value: GraphReusable {
3737 get { base [ input] }
3838 set { base [ input] = newValue }
3939 }
You can’t perform that action at this time.
0 commit comments