1
0
Fork 0
mirror of https://github.com/MatomoCamp/matomocamp-companion-android.git synced 2024-09-19 16:13:46 +02:00

Fix: disable the up navigation button while the event is loading

This commit is contained in:
Christophe Beyls 2018-01-27 00:41:02 +01:00
parent d7ddcc4ad7
commit 74e0c1270c

View file

@ -39,7 +39,7 @@ public class EventDetailsActivity extends BaseActivity implements Observer<Event
setContentView(R.layout.content);
ActionBar bar = getSupportActionBar();
bar.setDisplayHomeAsUpEnabled(true);
bar.setDisplayHomeAsUpEnabled(false);
bar.setDisplayShowTitleEnabled(false);
Event event = getIntent().getParcelableExtra(EXTRA_EVENT);