Reputation: 2009
When I format this piece with ReSharper:
this.Tabs.Add(bb => bb
.Horizontal(h => h
.Vertical(v => v
.Box("0", upperView, "")
.Box("1", mainView, ""))));
I get:
this.Tabs.Add(bb => bb
.Horizontal(h => h
.Vertical(v => v
.Box("0", upperView, "")
.Box("1", mainView, ""))));
But I want it to stay the same. How would I do this?
Upvotes: 1
Views: 447
Reputation: 1396
Maybe deselecting
reduces the effect.
(Assumed you are using C#.)
Upvotes: 2