Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@
<StackPanel Spacing="6">
<TextBlock Text="{Binding CommandPreviewLabel}" Opacity="0.7"/>
<Border Background="{DynamicResource AppDialogDarkBackground}" CornerRadius="4" Padding="8">
<TextBlock Text="{Binding CommandPreview}"
<SelectableTextBlock Text="{Binding CommandPreview}"
automation:AutomationProperties.Name="{Binding CommandPreviewLabel}"
FontFamily="Consolas,Cascadia Mono,Menlo,monospace"
FontSize="14"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
FontFamily="Segoe UI Variable Display"
TextWrapping="Wrap"
automation:AutomationProperties.HeadingLevel="1"/>
<TextBlock Text="{Binding SourceDisplay}"
<SelectableTextBlock Text="{Binding SourceDisplay}"
FontSize="13" Opacity="0.65"/>
</StackPanel>
</Grid>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
FontSize="14"
TextWrapping="Wrap"/>

<TextBlock Text="{Binding VersionText}"
<SelectableTextBlock Text="{Binding VersionText}"
FontSize="15"
FontWeight="SemiBold"
Margin="0,10"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
Command="{Binding ResetLocationCommand}"
IsEnabled="{Binding LocationResetEnabled}"/>
</Grid>
<TextBlock Text="{Binding LocationText}"
<SelectableTextBlock Text="{Binding LocationText}"
FontFamily="Consolas,Cascadia Mono,Menlo,monospace"
FontSize="14"
Opacity="0.6"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
<TextBlock Text="{Binding ShowVersionLabel}" Classes="hyperlink"
automation:AutomationProperties.AccessibilityView="Raw"/>
</Button>
<TextBlock Text="{Binding VersionText}"
<SelectableTextBlock Text="{Binding VersionText}"
IsVisible="{Binding VersionTextVisible}"
FontFamily="Consolas,Cascadia Mono,Menlo,monospace"
FontSize="14"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
MinWidth="120"/>
</StackPanel>
<!-- URL -->
<TextBlock Grid.Column="2"
<SelectableTextBlock Grid.Column="2"
Text="{Binding Url}"
VerticalAlignment="Center"
Classes="hyperlink"
Expand Down
Loading