We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 871751d commit 976c8daCopy full SHA for 976c8da
src/SourceGit/Views/DiffView.axaml.cs
@@ -110,7 +110,17 @@ protected override Size MeasureOverride(Size availableSize)
110
111
if (left != null)
112
{
113
- return GetDesiredSize(left.Size, availableSize);
+ var lSize = GetDesiredSize(left.Size, availableSize);
114
+ if (right != null)
115
+ {
116
+ var rSize = GetDesiredSize(right.Size, availableSize);
117
+ if (rSize.Width > lSize.Width) return rSize;
118
+ return lSize;
119
+ }
120
+ else
121
122
123
124
}
125
else if (right != null)
126
0 commit comments