mirror of
https://github.com/nextcloud/android.git
synced 2024-11-24 06:05:42 +03:00
Merge pull request #2649 from nextcloud/finishPreferences
Explicitly finish preferences
This commit is contained in:
commit
648b02ee8a
1 changed files with 7 additions and 0 deletions
|
@ -52,6 +52,7 @@ import android.support.v7.app.ActionBar;
|
|||
import android.support.v7.app.AppCompatDelegate;
|
||||
import android.view.Menu;
|
||||
import android.view.MenuInflater;
|
||||
import android.view.MenuItem;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.webkit.URLUtil;
|
||||
|
@ -742,6 +743,12 @@ public class Preferences extends PreferenceActivity
|
|||
return temp;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onOptionsItemSelected(MenuItem item) {
|
||||
finish();
|
||||
return super.onOptionsItemSelected(item);
|
||||
}
|
||||
|
||||
private void setupActionBar() {
|
||||
ActionBar actionBar = getDelegate().getSupportActionBar();
|
||||
actionBar.setDisplayHomeAsUpEnabled(true);
|
||||
|
|
Loading…
Reference in a new issue