Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
kairusds committed Oct 17, 2024
1 parent d551c87 commit e7ac559
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,8 @@ private void showFilePickerDialog(File dir){
return;
}

ArrayAdapter<String> adapter = new ArrayAdapter<>(MainActivty.this, android.R.layout.select_dialog_item, fileList);
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivty.this);
ArrayAdapter<String> adapter = new ArrayAdapter<>(MainActivity.this, android.R.layout.select_dialog_item, fileList);
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setTitle("Choose a file or directory");
builder.setAdapter(adapter, (dialog, which) -> {
if(which == 0){
Expand Down

0 comments on commit e7ac559

Please sign in to comment.