Skip to content

Commit

Permalink
added icons to "no file selected" for when selecting adb executable.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nomi committed Feb 18, 2022
1 parent ae48d27 commit 709b147
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ImportUtilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public static string GetADBPathDialog()
filePath = openFileDialog.FileName;
if (filePath == string.Empty)
{
if (DialogResult.Cancel == MessageBox.Show("No file selected.", "Warning:", MessageBoxButtons.RetryCancel))
if (DialogResult.Cancel == MessageBox.Show("No file selected.", "Notice", MessageBoxButtons.RetryCancel, MessageBoxIcon.Exclamation))
{
IsCancelled = true;
return "-1";
Expand All @@ -181,7 +181,7 @@ public static string GetADBPathDialog()
}
else
{
if (DialogResult.Cancel == MessageBox.Show("No file selected.", "Warning:", MessageBoxButtons.RetryCancel))
if (DialogResult.Cancel == MessageBox.Show("No file selected.", "Notice", MessageBoxButtons.RetryCancel, MessageBoxIcon.Exclamation))
{
IsCancelled = true;
return "-1";
Expand Down

0 comments on commit 709b147

Please sign in to comment.