Always show menu

This commit is contained in:
J-Jamet
2020-03-14 21:15:37 +01:00
parent d1af7349bc
commit 7fc9389700

View File

@@ -17,8 +17,10 @@
You should have received a copy of the GNU General Public License
along with KeePassDX. If not, see <http://www.gnu.org/licenses/>.
-->
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<menu xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:ignore="AlwaysShowAction">
<item android:id="@+id/menu_generate_password"
android:icon="@drawable/ic_generate_password_white_24dp"
android:title="@string/entry_password_generator"
@@ -34,11 +36,11 @@
android:icon="@drawable/ic_attach_file_white_24dp"
android:title="@string/entry_add_attachment"
android:orderInCategory="93"
app:showAsAction="ifRoom" />
app:showAsAction="always" />
-->
<item android:id="@+id/menu_add_otp"
android:icon="@drawable/ic_av_timer_white_24dp"
android:title="@string/entry_setup_otp"
android:orderInCategory="94"
app:showAsAction="ifRoom" />
app:showAsAction="always" />
</menu>