fix: Create a dedicated menu for NotificationsActivity (#571)

Previous code (probably copy/paste error) used R.menu.activity_trending.
This commit is contained in:
Nik Clayton 2024-03-29 21:37:45 +01:00 committed by GitHub
parent 2fd9828747
commit 09ca6ae0a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 22 additions and 1 deletions

View File

@ -68,7 +68,7 @@ class NotificationsActivity : BottomSheetActivity(), ActionButtonActivity, AppBa
override fun onCreateMenu(menu: Menu, menuInflater: MenuInflater) {
super.onCreateMenu(menu, menuInflater)
menuInflater.inflate(R.menu.activity_trending, menu)
menuInflater.inflate(R.menu.activity_notifications, menu)
}
override fun onMenuItemSelected(menuItem: MenuItem): Boolean {

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright 2024 Pachli Association
~
~ This file is a part of Pachli.
~
~ This program is free software; you can redistribute it and/or modify it under the terms of the
~ GNU General Public License as published by the Free Software Foundation; either version 3 of the
~ License, or (at your option) any later version.
~
~ Pachli is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
~ the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
~ Public License for more details.
~
~ You should have received a copy of the GNU General Public License along with Pachli; 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>