Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 006b33d

Browse files
committed
Make InlineReviews Resources public
Having it internal was making the XAML view throw.
1 parent 45df49f commit 006b33d

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

src/GitHub.InlineReviews/GitHub.InlineReviews.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@
391391
</ItemGroup>
392392
<ItemGroup>
393393
<EmbeddedResource Include="Resources.resx">
394-
<Generator>ResXFileCodeGenerator</Generator>
394+
<Generator>PublicResXFileCodeGenerator</Generator>
395395
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
396396
</EmbeddedResource>
397397
<EmbeddedResource Include="VSPackage.resx">

src/GitHub.InlineReviews/Resources.Designer.cs

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/GitHub.InlineReviews/Views/CommentTooltipView.xaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
<DockPanel>
2929
<StackPanel DockPanel.Dock="Bottom">
3030
<Border BorderBrush="Silver" BorderThickness="0,1,0,0" Margin="0,8" />
31-
<!--<TextBlock x:Name="StatusTextBlock" FontStyle="Italic" Text="{x:Static prop:Resources.CommentTooltipStatusMessage}" />-->
32-
<TextBlock x:Name="StatusTextBlock" FontStyle="Italic" Text="Click to reply" />
31+
<TextBlock x:Name="StatusTextBlock" FontStyle="Italic" Text="{x:Static prop:Resources.CommentTooltipStatusMessage}" />
3332
</StackPanel>
3433
<ScrollViewer x:Name="CommentScrollViewer" VerticalScrollBarVisibility="Auto">
3534
<ItemsControl ItemsSource="{Binding Comments}">

0 commit comments

Comments
 (0)