Skip to content

Commit

Permalink
Minor layout improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
marticliment committed Feb 28, 2025
1 parent 3240dfb commit ba9185e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion>
<WindowsSdkPackageVersion>10.0.26100.56</WindowsSdkPackageVersion>
<WindowsSdkPackageVersion>10.0.26100.57</WindowsSdkPackageVersion>
<SdkVersion>8.0.405</SdkVersion>
<Authors>Martí Climent and the contributors</Authors>
<PublisherName>Martí Climent</PublisherName>
Expand Down
2 changes: 1 addition & 1 deletion src/UniGetUI/Controls/PackageRanking.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public PackagesRanking()
link.Inlines.Add(new Run() { Text = CoreTools.Translate("More info") });
(InstalledDescription.Blocks[0] as Paragraph)?.Inlines.Add(link);

(UninstalledDescription.Blocks[0] as Paragraph)?.Inlines.Add(new Run { Text = CoreTools.Translate("Packages that have been uninstalled the most times through UniGetUI.") + " " });
(UninstalledDescription.Blocks[0] as Paragraph)?.Inlines.Add(new Run { Text = CoreTools.Translate("The packages that have been uninstalled most times through UniGetUI.") + " " });
link = new Hyperlink { NavigateUri = new Uri("about:blank") };
link.Inlines.Add(new Run() { Text = CoreTools.Translate("More info") });
(UninstalledDescription.Blocks[0] as Paragraph)?.Inlines.Add(link);
Expand Down
4 changes: 2 additions & 2 deletions src/UniGetUI/Pages/DialogPages/DialogHelper_Generic.cs
Original file line number Diff line number Diff line change
Expand Up @@ -579,8 +579,8 @@ public static void ShowTelemetryBanner()
{
Padding = new Thickness(0),
Content = btns,
Background = new SolidColorBrush(Colors.Transparent),
BorderBrush = new SolidColorBrush(Colors.Transparent),
Background = new SolidColorBrush(Microsoft.UI.Colors.Transparent),
BorderBrush = new SolidColorBrush(Microsoft.UI.Colors.Transparent),
};
mainButton.Resources["HyperlinkButtonBackgroundPointerOver"] = new SolidColorBrush(Color.FromArgb(0, 0, 0, 0));

Expand Down

0 comments on commit ba9185e

Please sign in to comment.