Skip to content

Commit

Permalink
Allow touches within listfragment in UploadFilesActivity
Browse files Browse the repository at this point in the history
  • Loading branch information
davigonz committed Feb 1, 2019
1 parent fe0e757 commit 2fc3195
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,10 @@ public void onCreate(Bundle savedInstanceState) {
mFileListFragment = (LocalFileListFragment)
getSupportFragmentManager().findFragmentById(R.id.local_files_list);

mFileListFragment.getView().setFilterTouchesWhenObscured(
PreferenceUtils.shouldAllowTouchesWithOtherVisibleWindows(this)
);

// Set input controllers
mCancelBtn = findViewById(R.id.upload_files_btn_cancel);
mCancelBtn.setOnClickListener(this);
Expand Down

0 comments on commit 2fc3195

Please sign in to comment.