do not finish the Options mode at Properties and Share btns
This commit is contained in:
parent
011dedc3d2
commit
af8b43a6f6
|
@ -326,6 +326,7 @@ public class ItemsFragment extends android.support.v4.app.Fragment
|
|||
switch (item.getItemId()) {
|
||||
case R.id.cab_rename:
|
||||
displayRenameDialog();
|
||||
mode.finish();
|
||||
break;
|
||||
case R.id.cab_properties:
|
||||
displayPropertiesDialog();
|
||||
|
@ -335,14 +336,16 @@ public class ItemsFragment extends android.support.v4.app.Fragment
|
|||
break;
|
||||
case R.id.cab_copy:
|
||||
displayCopyDialog();
|
||||
mode.finish();
|
||||
break;
|
||||
case R.id.cab_delete:
|
||||
prepareForDeleting();
|
||||
mode.finish();
|
||||
break;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
mode.finish();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue