mirror of
https://github.com/FossifyOrg/File-Manager.git
synced 2026-09-21 05:05:01 -04:00
open the proper folder at selecting a target one
This commit is contained in:
1 parent
3ed2fc8d8a
commit
40a41bcff6
1 file changed
+2
-1
@@ -530,7 +530,8 @@ public class ItemsFragment extends android.support.v4.app.Fragment
|
||||
@Override
|
||||
public void onActivityResult(int requestCode, int resultCode, Intent data) {
|
||||
if (requestCode == SELECT_FOLDER_REQUEST && resultCode == Activity.RESULT_OK && data != null) {
|
||||
mDestinationView.setText(data.getStringExtra(SELECT_FOLDER_PATH));
|
||||
mCopyDestinationPath = data.getStringExtra(SELECT_FOLDER_PATH);
|
||||
mDestinationView.setText(mCopyDestinationPath);
|
||||
}
|
||||
super.onActivityResult(requestCode, resultCode, data);
|
||||
}
|
||||
|
||||
Reference in new issue
Block a user