Skip to content

Commit

Permalink
whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
echoline committed Oct 4, 2020
1 parent eaa5241 commit 5e10967
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gui-android/java/org/echoline/drawterm/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ public void serverView(View v) {
((EditText)findViewById(R.id.cpuServer)).setText((String)a[0]);
((EditText)findViewById(R.id.authServer)).setText((String)a[1]);
((EditText)findViewById(R.id.userName)).setText((String)a[2]);
((EditText)findViewById(R.id.passWord)).setText((String)a[3]);
if (a.length > 3)
((EditText)findViewById(R.id.passWord)).setText((String)a[3]);
}

public void populateServers(Context context) {
Expand Down

0 comments on commit 5e10967

Please sign in to comment.