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
21 lines
736 B
XML
21 lines
736 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<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="ifRoom|collapseActionView" />
|
|
|
|
<item
|
|
android:id="@+id/action_clear_history"
|
|
android:icon="@drawable/ic_delete_sweep_24dp"
|
|
android:title="@string/pref_clear_history"
|
|
app:iconTint="?attr/colorOnToolbar"
|
|
app:showAsAction="ifRoom" />
|
|
|
|
</menu>
|