Skip to content

Commit ac7a7c2

Browse files
committed
Enabled automatic horizontal scrollbar for the Test Explorer window. Closes #5133.
1 parent d70d3cb commit ac7a7c2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Rubberduck.Core/UI/UnitTesting/TestExplorerControl.xaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,10 @@
353353
ItemsSource="{Binding Tests}"
354354
SelectionMode="Extended"
355355
ShowGroupingItemCount="True"
356-
InitialExpandedState="True">
356+
InitialExpandedState="True"
357+
ScrollViewer.CanContentScroll="True"
358+
ScrollViewer.VerticalScrollBarVisibility="Auto"
359+
ScrollViewer.HorizontalScrollBarVisibility="Auto">
357360
<DataGrid.Columns>
358361
<DataGridTemplateColumn Header="{Resx ResxName=Rubberduck.Resources.UnitTesting.TestExplorer, Key=TestExplorer_Outcome}">
359362
<DataGridTemplateColumn.CellTemplate>

0 commit comments

Comments
 (0)