mirror of
https://github.com/mihonapp/mihon.git
synced 2025-01-09 17:57:13 +01:00
3ea84cf0ce
* Add IME_FLAG_NO_PERSONALIZED_LEARNING flag to text input when incognito is enabled Tested with Gboard only. * Revert "Add IME_FLAG_NO_PERSONALIZED_LEARNING flag to text input when incognito is enabled" This reverts commit 068399db * Add IME_FLAG_NO_PERSONALIZED_LEARNING flag to text inputs when incognito is enabled Source preference is not affected. * Source preference stuff
29 lines
1012 B
XML
29 lines
1012 B
XML
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:context=".MainActivity">
|
|
|
|
<item
|
|
android:id="@+id/action_search"
|
|
android:icon="@drawable/ic_search_24dp"
|
|
android:title="@string/action_search"
|
|
app:actionViewClass="eu.kanade.tachiyomi.widget.TachiyomiSearchView"
|
|
app:iconTint="?attr/colorOnToolbar"
|
|
app:showAsAction="collapseActionView|ifRoom" />
|
|
|
|
<item
|
|
android:id="@+id/action_filter"
|
|
android:icon="@drawable/ic_filter_list_24dp"
|
|
android:title="@string/action_filter"
|
|
app:iconTint="?attr/colorOnToolbar"
|
|
app:showAsAction="ifRoom" />
|
|
|
|
<item
|
|
android:id="@+id/action_update_library"
|
|
android:icon="@drawable/ic_refresh_24dp"
|
|
android:title="@string/action_update_library"
|
|
app:iconTint="?attr/colorOnToolbar"
|
|
app:showAsAction="ifRoom" />
|
|
|
|
</menu>
|