Skip to content

Commit 67fe4f8

Browse files
authored
Fix theme-aware issue on background (#12)
1 parent 08be2aa commit 67fe4f8

3 files changed

Lines changed: 11 additions & 4 deletions

File tree

src/CodingWithCalvin.LaunchyBar/CodingWithCalvin.LaunchyBar.csproj

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
<Nullable>enable</Nullable>
88
<UseWPF>true</UseWPF>
99
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
10+
<StartAction>Program</StartAction>
11+
<StartProgram>$(DevEnvDir)devenv.exe</StartProgram>
12+
<StartArguments>/rootSuffix Exp</StartArguments>
1013
</PropertyGroup>
1114

1215
<ItemGroup>
@@ -29,4 +32,8 @@
2932
<IncludeInVSIX>true</IncludeInVSIX>
3033
</Content>
3134
</ItemGroup>
35+
36+
<ItemGroup>
37+
<Folder Include="Properties\" />
38+
</ItemGroup>
3239
</Project>

src/CodingWithCalvin.LaunchyBar/Properties/launchSettings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"profiles": {
3-
"Debug Extension w/2026": {
3+
"Debug Extension": {
44
"commandName": "Executable",
5-
"executablePath": "C:\\Program Files\\Microsoft Visual Studio\\18\\Community\\Common7\\IDE\\devenv.exe",
5+
"executablePath": "C:\\Program Files\\Microsoft Visual Studio\\18\\Preview\\Common7\\IDE\\devenv.exe",
66
"commandLineArgs": "/rootSuffix Exp"
77
}
88
}

src/CodingWithCalvin.LaunchyBar/UI/LaunchyBarControl.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
66
xmlns:vs="clr-namespace:Microsoft.VisualStudio.Shell;assembly=Microsoft.VisualStudio.Shell.15.0"
77
xmlns:imaging="clr-namespace:Microsoft.VisualStudio.Imaging;assembly=Microsoft.VisualStudio.Imaging"
8-
mc:Ignorable="d"
8+
mc:Ignorable="d"
99
d:DesignHeight="600" d:DesignWidth="48"
10-
Background="#FF2D2D30">
10+
Background="{DynamicResource {x:Static vs:VsBrushes.ToolWindowBackgroundKey}}">
1111

1212
<UserControl.Resources>
1313
<Style x:Key="LaunchyBarButtonStyle" TargetType="Button">

0 commit comments

Comments
 (0)