Improve settings up button behavior

- Fix #736
This commit is contained in:
Mauricio Colli 2018-01-23 11:43:55 -02:00
parent bab95d5ad5
commit 6c5382fa47

View file

@ -72,7 +72,9 @@ public class SettingsActivity extends AppCompatActivity implements BasePreferenc
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
if (id == android.R.id.home) {
finish();
if (getSupportFragmentManager().getBackStackEntryCount() == 0) {
finish();
} else getSupportFragmentManager().popBackStack();
}
return true;
}