Skip to content

Commit

Permalink
Merge pull request #5231 from glowingrunes/5135-HorizontalScrollBarCo…
Browse files Browse the repository at this point in the history
…deInspection

Enabled horizontal scrollbar in the Code Inspection window. Closes #5
  • Loading branch information
retailcoder committed Oct 19, 2019
2 parents bcce039 + a9611a1 commit 347c603
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Rubberduck.Core/UI/Inspections/InspectionResultsControl.xaml
Expand Up @@ -200,7 +200,10 @@
SelectedItem="{Binding SelectedItem}"
SelectionUnit="FullRow"
ItemsSource="{Binding Results, NotifyOnSourceUpdated=True}"
VirtualizingPanel.IsVirtualizingWhenGrouping="True">
VirtualizingPanel.IsVirtualizingWhenGrouping="True"
ScrollViewer.CanContentScroll="True"
ScrollViewer.VerticalScrollBarVisibility="Auto"
ScrollViewer.HorizontalScrollBarVisibility="Auto">
<DataGrid.RowDetailsTemplate>
<DataTemplate>
<Grid>
Expand Down

0 comments on commit 347c603

Please sign in to comment.