Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions src/GraphMetadataViewExtension/GraphMetadataView.xaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<UserControl x:Class="Dynamo.GraphMetadata.GraphMetadataView"
<UserControl x:Class="Dynamo.GraphMetadata.GraphMetadataView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Expand Down Expand Up @@ -131,8 +131,8 @@

</ResourceDictionary>
</UserControl.Resources>

<Grid Margin="10px, 10px">
<ScrollViewer VerticalScrollBarVisibility="Auto">
Copy link

Copilot AI Nov 27, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The ScrollViewer should specify HorizontalScrollBarVisibility to prevent unexpected horizontal scrolling behavior. Consider adding HorizontalScrollBarVisibility=\"Disabled\" to ensure content doesn't scroll horizontally, which could impact keyboard navigation and screen reader behavior.

Suggested change
<ScrollViewer VerticalScrollBarVisibility="Auto">
<ScrollViewer VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Disabled">

Copilot uses AI. Check for mistakes.
<Grid Margin="10px, 10px">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
Expand Down Expand Up @@ -271,4 +271,5 @@
</ListView>
</Grid>
</Grid>
</ScrollViewer>
</UserControl>
Loading