Skip to content

Commit 575f902

Browse files
committed
ux: add minimal height limitation for commit message textbox
1 parent fa2c7c0 commit 575f902

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/Views/WorkingCopy.axaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,14 @@
117117
BorderBrush="{DynamicResource Brush.Border0}"/>
118118

119119
<!-- Right -->
120-
<Grid Grid.Column="2" Margin="0,4,4,4" RowDefinitions="*,4,128,36">
120+
<Grid Grid.Column="2" Margin="0,4,4,4">
121+
<Grid.RowDefinitions>
122+
<RowDefinition Height="*" MinHeight="400"/>
123+
<RowDefinition Height="4"/>
124+
<RowDefinition Height="128" MinHeight="100"/>
125+
<RowDefinition Height="36"/>
126+
</Grid.RowDefinitions>
127+
121128
<!-- Select Change Detail -->
122129
<Grid Grid.Row="0">
123130
<Border BorderThickness="1" BorderBrush="{DynamicResource Brush.Border2}">

0 commit comments

Comments
 (0)