fix combines instance
The old one caused the actions to run in the right order, but with the wrong description. This problem was found by comparing the [Host] between this branch and current joeyconfig, and printing out their properties, info, and also their list of child properties. The only other difference found is that onChange orders the child property list differently. That does not have any real effect and would be difficult to change, so I've left it as-is.
This commit is contained in:
parent
f4fc24aa5c
commit
334abae312
|
@ -250,7 +250,8 @@ instance Combines (Property HasInfo) (Property NoInfo) where
|
|||
IProperty d1 (a2 <> a1) i1 (toIProperty y : cs1)
|
||||
|
||||
instance Combines (Property NoInfo) (Property HasInfo) where
|
||||
requires x y = requires y x
|
||||
requires (SProperty d1 a1 cs1) y@(IProperty _d2 a2 _i2 _cs2) =
|
||||
IProperty d1 (a2 <> a1) mempty (y : map toIProperty cs1)
|
||||
|
||||
instance Combines (Property NoInfo) (Property NoInfo) where
|
||||
requires (SProperty d1 a1 cs1) y@(SProperty _d2 a2 _cs2) =
|
||||
|
|
Loading…
Reference in New Issue