Skip to content

Commit

Permalink
- Fixed containers in symbol list were not displayed with their speci…
Browse files Browse the repository at this point in the history
…fic style
  • Loading branch information
wmjordan committed May 30, 2020
1 parent 6e5f0a0 commit 3a753f5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Codist/Controls/CSharpSymbolContextMenu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public void AddSymbolNodeCommands() {
}
if (_Symbol != null) {
Items.Add(CreateItem(IconIds.Copy, "Copy Symbol Name", CopySymbolName));
if (_Symbol != null && _Symbol.IsQualifiable()) {
if (_Symbol.IsQualifiable()) {
Items.Add(CreateItem(IconIds.Copy, "Copy Qualified Symbol Name", CopyQualifiedSymbolName));
}
}
Expand Down
2 changes: 1 addition & 1 deletion Codist/Controls/SymbolList.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<Setter TargetName="Border" Property="Background" Value="{DynamicResource {x:Static vsp:EnvironmentColors.PanelTitleBarBrushKey}}"/>
<Setter TargetName="HeaderHost" Property="TextBlock.FontWeight" Value="Bold"/>
</DataTrigger>
<DataTrigger Binding="{Binding Type}" Value="Container">
<DataTrigger Binding="{Binding Usage}" Value="Container">
<Setter TargetName="HeaderHost" Property="HorizontalAlignment" Value="Center"/>
<Setter TargetName="Border" Property="Background" Value="{DynamicResource {x:Static vsp:EnvironmentColors.PanelTitleBarUnselectedBrushKey}}"/>
</DataTrigger>
Expand Down
2 changes: 1 addition & 1 deletion Codist/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("5.0.0.0")]
[assembly: AssemblyFileVersion("5.6.0.5635")]
[assembly: AssemblyFileVersion("5.6.1.5667")]
2 changes: 1 addition & 1 deletion Codist/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="Codist.WMJ.c7b93d20-621f-4b21-9d28-d51157ef0b94" Version="5.6.0.5644" Language="en-US" Publisher="WMJ" />
<Identity Id="Codist.WMJ.c7b93d20-621f-4b21-9d28-d51157ef0b94" Version="5.6.1.5668" Language="en-US" Publisher="WMJ" />
<DisplayName>Codist</DisplayName>
<Description xml:space="preserve">A productivity booster for C# programmers which enhances syntax highlighting, quick info (tooltip), navigation bar, scrollbar, display quality and brings smart tool bar to code editor.</Description>
<MoreInfo>https://github.com/wmjordan/Codist</MoreInfo>
Expand Down

0 comments on commit 3a753f5

Please sign in to comment.