Skip to content

Commit

Permalink
Remove somehow duplicated function
Browse files Browse the repository at this point in the history
  • Loading branch information
marticliment committed Feb 9, 2025
1 parent 71de91d commit e826281
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 15 deletions.
14 changes: 0 additions & 14 deletions src/UniGetUI/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,20 +167,6 @@ private void ClearSubtitle()
Title = "UniGetUI";
}

private void AddToSubtitle(string line)
{
if (AppSubTitle.Text.Length > 0)
AppSubTitle.Text += " - ";
AppSubTitle.Text += line;
Title = "UniGetUI - " + AppSubTitle.Text;
}

private void ClearSubtitle()
{
AppSubTitle.Text = "";
Title = "UniGetUI";
}

private static void TransferOldSettingsFormats()
{
foreach (IPackageManager Manager in PEInterface.Managers)
Expand Down
2 changes: 1 addition & 1 deletion src/UniGetUI/Pages/DialogPages/DesktopShortcuts.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ private void YesResetButton_Click(object sender, RoutedEventArgs e)
ConfirmResetFlyout.Hide();
}

private void NoResetButton_Click(object sender, Microsoft.UI.Xaml.RoutedEventArgs e)
private void NoResetButton_Click(object sender, RoutedEventArgs e)
{
ConfirmResetFlyout.Hide();
}
Expand Down

0 comments on commit e826281

Please sign in to comment.