Add lime-green color to various states after downloading
This commit is contained in:
@@ -537,6 +537,15 @@ namespace AndroidSideloader
|
||||
{
|
||||
if (!ProgressText.IsDisposed)
|
||||
{
|
||||
var states = new[] { "Sideloading", "Installing", "Copying", "Comparing", "Deleting" };
|
||||
if (ProgressText.ForeColor == Color.LimeGreen)
|
||||
{
|
||||
ProgressText.ForeColor = Color.White;
|
||||
}
|
||||
if (states.Any(txt.Contains))
|
||||
{
|
||||
ProgressText.ForeColor = Color.LimeGreen;
|
||||
}
|
||||
ProgressText.Text = txt;
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user