Skip to content

Commit 3aff911

Browse files
committed
Library loading indicator (#63)
1 parent a0d2f29 commit 3aff911

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

Binaries/Steam Library Manager.exe

1 KB
Binary file not shown.

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
1818
- HamburgerMenu Addition to Library Panel for library type switching (#71)
1919
- Duplicate Game Finder/Cleaner for Steam libraries ([#73](https://github.com/RevoLand/Steam-Library-Manager/issues/73))
2020
- Ability to Enable/Disable Library Support (Steam, Origin, Uplay) - ([#63](https://github.com/RevoLand/Steam-Library-Manager/issues/63))
21+
- Library loading indicator ([#63](https://github.com/RevoLand/Steam-Library-Manager/issues/63))
2122

2223
### Changed
2324

Source/Steam Library Manager/Forms/HamburgerMenuControl.xaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
66
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
77
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
8+
xmlns:SLM="clr-namespace:Steam_Library_Manager"
89
xmlns:enums="clr-namespace:Steam_Library_Manager.Definitions.Enums"
910
mc:Ignorable="d">
1011
<Grid>
@@ -65,8 +66,7 @@
6566
Margin="3,10,0,50" DisplayMode="CompactInline" HorizontalAlignment="Left" VerticalAlignment="Stretch" Width="200" Content="" ContentTemplate="{StaticResource HamburgerContentTemplate}">
6667
<Controls:HamburgerMenu.ItemsSource>
6768
<Controls:HamburgerMenuItemCollection>
68-
<Controls:HamburgerMenuIconItem Label="All Available" Tag="All" Icon="/Steam Library Manager;component/Resources/slm-icon.ico">
69-
</Controls:HamburgerMenuIconItem>
69+
<Controls:HamburgerMenuIconItem Label="All Available" Tag="All" Icon="/Steam Library Manager;component/Resources/slm-icon.ico" />
7070
<Controls:HamburgerMenuIconItem Label="Steam - SLM" Icon="/Steam Library Manager;component/Resources/steam-icon.ico">
7171
<Controls:HamburgerMenuIconItem.Tag>
7272
<enums:LibraryType>Steam</enums:LibraryType>

Source/Steam Library Manager/Forms/LibraryView.xaml

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
<!-- TextBlock: Library Path -->
2525
<TextBlock Margin="3" Text="{Binding DirectoryInfo.FullName}" TextWrapping="Wrap" HorizontalAlignment="Left" VerticalAlignment="Top" />
2626

27+
<controls:ProgressRing Foreground="{DynamicResource AccentColorBrush}" Height="16" Width="16" HorizontalAlignment="Right" VerticalAlignment="Top" IsActive="{Binding IsUpdatingAppList}"/>
28+
2729
<WrapPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Bottom" Margin="0, 0, 0, 30" Height="30">
2830
<!-- TextBlock: Library Type -->
2931
<TextBlock Text="{Binding Type}" />

0 commit comments

Comments
 (0)