We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9e3482c + f03eb8f commit 671fabfCopy full SHA for 671fabf
src/UniGetUI/MainWindow.xaml.cs
@@ -167,6 +167,20 @@ private void ClearSubtitle()
167
Title = "UniGetUI";
168
}
169
170
+ private void AddToSubtitle(string line)
171
+ {
172
+ if (AppSubTitle.Text.Length > 0)
173
+ AppSubTitle.Text += " - ";
174
+ AppSubTitle.Text += line;
175
+ Title = "UniGetUI - " + AppSubTitle.Text;
176
+ }
177
+
178
+ private void ClearSubtitle()
179
180
+ AppSubTitle.Text = "";
181
+ Title = "UniGetUI";
182
183
184
private static void TransferOldSettingsFormats()
185
{
186
foreach (IPackageManager Manager in PEInterface.Managers)
0 commit comments