mirror of
https://github.com/MaintainTeam/LastPipeBender.git
synced 2025-03-01 13:58:20 +03:00
Fix ErrorActivity actionbar back button not working
The issue is because of R.id.home != android.R.id.home
This commit is contained in:
parent
9fc6f19702
commit
c808beec30
1 changed files with 1 additions and 1 deletions
|
@ -191,7 +191,7 @@ public class ErrorActivity extends AppCompatActivity {
|
|||
@Override
|
||||
public boolean onOptionsItemSelected(final MenuItem item) {
|
||||
switch (item.getItemId()) {
|
||||
case R.id.home:
|
||||
case android.R.id.home:
|
||||
onBackPressed();
|
||||
return true;
|
||||
case R.id.menu_item_share_error:
|
||||
|
|
Loading…
Add table
Reference in a new issue