Skip to content

Commit 347c603

Browse files
authored
Merge pull request #5231 from glowingrunes/5135-HorizontalScrollBarCodeInspection
Enabled horizontal scrollbar in the Code Inspection window. Closes #5
2 parents bcce039 + a9611a1 commit 347c603

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Rubberduck.Core/UI/Inspections/InspectionResultsControl.xaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,10 @@
200200
SelectedItem="{Binding SelectedItem}"
201201
SelectionUnit="FullRow"
202202
ItemsSource="{Binding Results, NotifyOnSourceUpdated=True}"
203-
VirtualizingPanel.IsVirtualizingWhenGrouping="True">
203+
VirtualizingPanel.IsVirtualizingWhenGrouping="True"
204+
ScrollViewer.CanContentScroll="True"
205+
ScrollViewer.VerticalScrollBarVisibility="Auto"
206+
ScrollViewer.HorizontalScrollBarVisibility="Auto">
204207
<DataGrid.RowDetailsTemplate>
205208
<DataTemplate>
206209
<Grid>

0 commit comments

Comments
 (0)