Skip to content

Fixed font size for the PathBar #184

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 25, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions Files UWP/Filesystem/ItemViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,12 @@ private void Universal_PropertyChanged(object sender, System.ComponentModel.Prop

Microsoft.UI.Xaml.Controls.TabViewItem item = new Microsoft.UI.Xaml.Controls.TabViewItem()
{
Header = componentLabel + " >",
Header = componentLabel + " ",
Tag = tag,
CornerRadius = new CornerRadius(0),
Style = tabStyleFixed,
FontWeight = weight
FontWeight = weight,
FontSize = 13
};
item.Tapped += Item_Tapped;
GetCurrentSelectedTabInstance<ProHome>().accessiblePathTabView.Items.Add(item);
Expand All @@ -149,11 +150,12 @@ private void Universal_PropertyChanged(object sender, System.ComponentModel.Prop

Microsoft.UI.Xaml.Controls.TabViewItem item = new Microsoft.UI.Xaml.Controls.TabViewItem()
{
Header = componentLabel + " >",
Header = componentLabel + " ",
Tag = tag,
CornerRadius = new CornerRadius(0),
Style = tabStyleFixed,
FontWeight = weight
FontWeight = weight,
FontSize = 13
};
item.Tapped += Item_Tapped;
GetCurrentSelectedTabInstance<ProHome>().accessiblePathTabView.Items.Add(item);
Expand Down
5 changes: 3 additions & 2 deletions Files UWP/YourHome.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,12 @@ protected override void OnNavigatedTo(NavigationEventArgs eventArgs)
string tag = "Favorites";
Microsoft.UI.Xaml.Controls.TabViewItem item = new Microsoft.UI.Xaml.Controls.TabViewItem()
{
Header = componentLabel + " >",
Header = componentLabel + " ",
Tag = tag,
CornerRadius = new CornerRadius(0),
Style = tabStyleFixed,
FontWeight = weight
FontWeight = weight,
FontSize = 13
};
GetCurrentSelectedTabInstance<ProHome>().accessiblePathTabView.Items.Add(item);

Expand Down