mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-14 10:47:30 +00:00
2d44033d3c
* General (makeshift): Set default first-tab to be profile, adjust search button appearance logic, add fragment labels * DM inbox items: Adjust group chat avatar sizes, reinstate unread indicators * DM thread: Swap buttons per spirit of #122 * Profile: Fix story fetcher logic * Story: Fix bug where first story can't scroll to next user, unify subtitle to timestamp, swap buttons per #122 * Comment: Unfocus replying comment when X is pressed
19 lines
857 B
XML
19 lines
857 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/more_nav_graph"
|
|
app:startDestination="@id/morePreferencesFragment">
|
|
|
|
<fragment
|
|
android:id="@+id/morePreferencesFragment"
|
|
android:name="awais.instagrabber.fragments.settings.MorePreferencesFragment"
|
|
android:label="@string/more">
|
|
<action
|
|
android:id="@+id/action_morePreferencesFragment_to_settingsPreferencesFragment"
|
|
app:destination="@id/settingsPreferencesFragment" />
|
|
</fragment>
|
|
<fragment
|
|
android:id="@+id/settingsPreferencesFragment"
|
|
android:name="awais.instagrabber.fragments.settings.SettingsPreferencesFragment"
|
|
android:label="@string/action_settings" />
|
|
</navigation> |