Skip to content

Commit 5740aea

Browse files
author
Richard
authored
Properties: Replace "combined files" icon (#1214)
1 parent f28bffb commit 5740aea

File tree

10 files changed

+9
-13
lines changed

10 files changed

+9
-13
lines changed

Files/App.xaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
55
<Application.Resources>
66
<ResourceDictionary>
7-
<FontFamily x:Key="CustomLayoutModeIcon">/Assets/Custom Glyphs/layout-mode-custom-icon.ttf#layout-mode-custom-icon</FontFamily>
8-
<FontFamily x:Key="CustomNewTabIcon">/Assets/Custom Glyphs/newtab-icon.ttf#newtab-icon</FontFamily>
7+
<FontFamily x:Key="CustomGlyph">/Assets/Custom Glyphs/Custom-Glyphs.ttf#Custom-Glyphs</FontFamily>
98
<FontFamily x:Key="RecycleBinIcons">/Assets/Custom Glyphs/recyclebin-fabric-glyph.ttf#Fabric MDL2 Assets</FontFamily>
109
<ResourceDictionary.MergedDictionaries>
1110
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
2.04 KB
Binary file not shown.
Binary file not shown.
-1.3 KB
Binary file not shown.

Files/Files.csproj

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -287,13 +287,10 @@
287287
<Content Include="Assets\LargeTile.scale-200.png" />
288288
<Content Include="Assets\LargeTile.scale-400.png" />
289289
<Content Include="Assets\logo.bmp" />
290-
<Content Include="Assets\Custom Glyphs\layout-mode-custom-icon.ttf">
291-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
292-
</Content>
293290
<Content Include="Assets\Custom Glyphs\recyclebin-fabric-glyph.ttf">
294291
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
295292
</Content>
296-
<Content Include="Assets\Custom Glyphs\newtab-icon.ttf">
293+
<Content Include="Assets\Custom Glyphs\Custom-Glyphs.ttf">
297294
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
298295
</Content>
299296
<None Include="Assets\terminal\terminal.json">

Files/UserControls/ModernNavigationToolbar.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@
787787
Click="{x:Bind local1:App.CurrentInstance.InteractionOperations.OpenNewTab}"
788788
Text="New Tab">
789789
<MenuFlyoutItem.Icon>
790-
<FontIcon FontFamily="{StaticResource CustomNewTabIcon}" Glyph="&#xF400;" />
790+
<FontIcon FontFamily="{StaticResource CustomGlyph}" Glyph="&#xF400;" />
791791
</MenuFlyoutItem.Icon>
792792
</MenuFlyoutItem>
793793
<MenuFlyoutItem

Files/UserControls/SidebarControl.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@
153153
Click="OpenInNewTab_Click"
154154
Text="Open in new tab">
155155
<MenuFlyoutItem.Icon>
156-
<FontIcon FontFamily="{StaticResource CustomNewTabIcon}" Glyph="&#xF500;" />
156+
<FontIcon FontFamily="{StaticResource CustomGlyph}" Glyph="&#xF500;" />
157157
</MenuFlyoutItem.Icon>
158158
</MenuFlyoutItem>
159159
<MenuFlyoutItem

Files/Views/LayoutModes/GenericFileBrowser.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@
200200
Tag="OpenTab_FlyoutItem"
201201
Text="Open in new tab">
202202
<MenuFlyoutItem.Icon>
203-
<FontIcon FontFamily="{StaticResource CustomNewTabIcon}" Glyph="&#xF500;" />
203+
<FontIcon FontFamily="{StaticResource CustomGlyph}" Glyph="&#xF500;" />
204204
</MenuFlyoutItem.Icon>
205205
</MenuFlyoutItem>
206206
<MenuFlyoutItem

Files/Views/LayoutModes/GridViewBrowser.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@
196196
Tag="OpenTab_FlyoutItem"
197197
Text="Open in new tab">
198198
<MenuFlyoutItem.Icon>
199-
<FontIcon FontFamily="{StaticResource CustomNewTabIcon}" Glyph="&#xF500;" />
199+
<FontIcon FontFamily="{StaticResource CustomGlyph}" Glyph="&#xF500;" />
200200
</MenuFlyoutItem.Icon>
201201
</MenuFlyoutItem>
202202
<MenuFlyoutItem

Files/Views/Pages/Properties.xaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@
9797
HorizontalAlignment="Left"
9898
VerticalAlignment="Stretch"
9999
x:Load="{x:Bind ViewModel.LoadCombinedItemsGlyph, Mode=OneWay}"
100-
FontFamily="Segoe MDL2 Assets"
101-
FontSize="70"
102-
Glyph="&#xE81E;" />
100+
FontFamily="{StaticResource CustomGlyph}"
101+
FontSize="72"
102+
Glyph="&#xF600;" />
103103
<FontIcon
104104
x:Name="DriveItemIcon"
105105
HorizontalAlignment="Center"

0 commit comments

Comments
 (0)