Skip to content

Commit

Permalink
Merge pull request #1 from Nomi/debug
Browse files Browse the repository at this point in the history
Fixed some typos and missed "\n" on the MessageBox that appears when …
  • Loading branch information
Nomi authored Feb 18, 2022
2 parents 99eccdd + d201562 commit 82f2e64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ private void button_connectfetchjson_Click(object sender, EventArgs e)
string clickMessage = "Make sure to:\n 1) Have ADB and proper ADB drivers for your device.\n";
clickMessage += "2) Have \"USB Debugging\" enabled on the device to recover from.\n";
clickMessage += "3) Connect ONLY the Android device you want to recover from.\n";
clickMessage += "4) Allow ADB Debugging from the pop-uo on your device.";
clickMessage += "5) Have Chrome open on your android device.";
clickMessage += "4) Allow ADB Debugging from the pop-up on your device.\n";
clickMessage += "5) Have Chrome open on your Android device.";
MessageBox.Show(clickMessage, "REQUIREMENTS/INSTRUCTIONS", MessageBoxButtons.OK, MessageBoxIcon.Information);
groupBox1.ForeColor = Color.White;
importAndProcessGroupbox.ForeColor = Color.White;
Expand Down

0 comments on commit 82f2e64

Please sign in to comment.