Something like that should be possible: ```scala Tweak[SomeView](v ⇒ v.subView1 <~ someTweak ~ v.subView2 <~ someOtherTweak ) ``` … without any notion of `Ui`. Currently, we have to do: ```scala Tweak[SomeView](v ⇒ ( v.subView1 <~ someTweak ~ v.subView2 <~ someOtherTweak ).get ) ```
Something like that should be possible:
… without any notion of
Ui.Currently, we have to do: