Skip to content

Commit 8e5f58e

Browse files
committed
Set limit on position of GridSplitter in indenter settings.
1 parent 3997ab0 commit 8e5f58e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

RetailCoder.VBE/UI/Settings/IndenterSettings.xaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
</UserControl.Resources>
2727
<Grid>
2828
<Grid.RowDefinitions>
29-
<RowDefinition />
29+
<RowDefinition Height="280" MaxHeight="280"/>
3030
<RowDefinition Height="5" />
31-
<RowDefinition Height="200" />
31+
<RowDefinition />
3232
</Grid.RowDefinitions>
3333
<ScrollViewer>
3434
<StackPanel Margin="5">
@@ -198,7 +198,8 @@
198198

199199
<ScrollViewer Grid.Row="2"
200200
VerticalScrollBarVisibility="Auto"
201-
HorizontalScrollBarVisibility="Auto">
201+
HorizontalScrollBarVisibility="Auto"
202+
Background="White">
202203
<TextBlock Background="White"
203204
xml:space="preserve"
204205
Margin="5,0"

0 commit comments

Comments
 (0)