Skip to content

Commit

Permalink
Fixed dependency property error in file explorer.
Browse files Browse the repository at this point in the history
Figured out that it occurs when keyboard focus is moved on the modern buttons.
  • Loading branch information
Dylan Bickerstaff committed Jul 25, 2024
1 parent 00e288c commit c4edd8d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
6 changes: 3 additions & 3 deletions CommonProperties.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
<ApplicationIcon>..\SuperLauncherAssets\logo.ico</ApplicationIcon>
<Product>Super Launcher</Product>
<AssemblyTitle>Super Launcher</AssemblyTitle>
<AssemblyVersion>2.1.2.0</AssemblyVersion>
<FileVersion>2.1.2.0</FileVersion>
<AssemblyVersion>2.1.3.0</AssemblyVersion>
<FileVersion>2.1.3.0</FileVersion>
<NeutralLanguage>en-US</NeutralLanguage>
<RepositoryUrl>https://github.com/belowaverage-org/SuperLauncher</RepositoryUrl>
<RepositoryType>GIT</RepositoryType>
<PackageProjectUrl>https://github.com/belowaverage-org/SuperLauncher</PackageProjectUrl>
<PackageLicenseFile>..\LICENSE</PackageLicenseFile>
<Copyright>below average © 2024</Copyright>
<Company>Dylan Bickerstaff; Adam Cunningham</Company>
<Version>2.1.2.0</Version>
<Version>2.1.3.0</Version>
<Description>🚀 Super Launcher is an admin launcher that persists in the system tray that can launch programs quickly; optionally, with administrator rights, as another user, or both.</Description>
<PlatformTarget>x64</PlatformTarget>
<Platforms>x64</Platforms>
Expand Down
11 changes: 6 additions & 5 deletions SuperLauncher/ModernLauncherExplorerButtons.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:SuperLauncher"
Focusable="False"
mc:Ignorable="d" >
<UserControl.Resources>
<ResourceDictionary>
Expand All @@ -12,10 +13,10 @@
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</UserControl.Resources>
<Grid>
<Button x:Name="Back" Style="{DynamicResource ExplorerButton}" Margin="0,0,0,0" FontFamily="{DynamicResource Icons}" Width="27" Height="28" HorizontalAlignment="Left" VerticalAlignment="Top"></Button>
<Button x:Name="Forward" Style="{DynamicResource ExplorerButton}" Margin="29,0,0,0" FontFamily="{DynamicResource Icons}" Width="28" Height="28" HorizontalAlignment="Left" VerticalAlignment="Top"></Button>
<Button x:Name="Up" Style="{DynamicResource ExplorerButton}" Margin="61,0,0,0" FontFamily="{DynamicResource Icons}" Width="28" Height="28" HorizontalAlignment="Left" VerticalAlignment="Top"></Button>
<Button x:Name="Refresh" Style="{DynamicResource ExplorerButton}" Margin="93,0,0,0" FontFamily="{DynamicResource Icons}" Width="28" Height="28" HorizontalAlignment="Left" VerticalAlignment="Center"></Button>
<Grid Focusable="False">
<Button x:Name="Back" Focusable="False" Style="{DynamicResource ExplorerButton}" Margin="0,0,0,0" FontFamily="{DynamicResource Icons}" Width="27" Height="28" HorizontalAlignment="Left" VerticalAlignment="Top"></Button>
<Button x:Name="Forward" Focusable="False" Style="{DynamicResource ExplorerButton}" Margin="29,0,0,0" FontFamily="{DynamicResource Icons}" Width="28" Height="28" HorizontalAlignment="Left" VerticalAlignment="Top"></Button>
<Button x:Name="Up" Focusable="False" Style="{DynamicResource ExplorerButton}" Margin="61,0,0,0" FontFamily="{DynamicResource Icons}" Width="28" Height="28" HorizontalAlignment="Left" VerticalAlignment="Top"></Button>
<Button x:Name="Refresh" Focusable="False" Style="{DynamicResource ExplorerButton}" Margin="93,0,0,0" FontFamily="{DynamicResource Icons}" Width="28" Height="28" HorizontalAlignment="Left" VerticalAlignment="Center"></Button>
</Grid>
</UserControl>

0 comments on commit c4edd8d

Please sign in to comment.