Skip to content

Commit c7895b8

Browse files
author
Yair Aichenbaum
committed
Fixed font size for the PathBar
Changed the arrow icon between items in the PathBar
1 parent 1343312 commit c7895b8

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

Files UWP/Filesystem/ItemViewModel.cs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,12 @@ private void Universal_PropertyChanged(object sender, System.ComponentModel.Prop
130130

131131
Microsoft.UI.Xaml.Controls.TabViewItem item = new Microsoft.UI.Xaml.Controls.TabViewItem()
132132
{
133-
Header = componentLabel + " >",
133+
Header = componentLabel + " ",
134134
Tag = tag,
135135
CornerRadius = new CornerRadius(0),
136136
Style = tabStyleFixed,
137-
FontWeight = weight
137+
FontWeight = weight,
138+
FontSize = 13
138139
};
139140
item.Tapped += Item_Tapped;
140141
GetCurrentSelectedTabInstance<ProHome>().accessiblePathTabView.Items.Add(item);
@@ -149,11 +150,12 @@ private void Universal_PropertyChanged(object sender, System.ComponentModel.Prop
149150

150151
Microsoft.UI.Xaml.Controls.TabViewItem item = new Microsoft.UI.Xaml.Controls.TabViewItem()
151152
{
152-
Header = componentLabel + " >",
153+
Header = componentLabel + " ",
153154
Tag = tag,
154155
CornerRadius = new CornerRadius(0),
155156
Style = tabStyleFixed,
156-
FontWeight = weight
157+
FontWeight = weight,
158+
FontSize = 13
157159
};
158160
item.Tapped += Item_Tapped;
159161
GetCurrentSelectedTabInstance<ProHome>().accessiblePathTabView.Items.Add(item);

Files UWP/YourHome.xaml.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,12 @@ protected override void OnNavigatedTo(NavigationEventArgs eventArgs)
101101
string tag = "Favorites";
102102
Microsoft.UI.Xaml.Controls.TabViewItem item = new Microsoft.UI.Xaml.Controls.TabViewItem()
103103
{
104-
Header = componentLabel + " >",
104+
Header = componentLabel + " ",
105105
Tag = tag,
106106
CornerRadius = new CornerRadius(0),
107107
Style = tabStyleFixed,
108-
FontWeight = weight
108+
FontWeight = weight,
109+
FontSize = 13
109110
};
110111
GetCurrentSelectedTabInstance<ProHome>().accessiblePathTabView.Items.Add(item);
111112

0 commit comments

Comments
 (0)