mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-27 03:49:04 +03:00
Add report bug in the menu
This commit is contained in:
parent
a550743f2f
commit
519f49b50d
2 changed files with 9 additions and 0 deletions
|
@ -169,6 +169,10 @@ class HomeActivity : VectorBaseActivity(), ToolbarConfigurable {
|
|||
BugReporter.openBugReportScreen(this, true)
|
||||
return true
|
||||
}
|
||||
R.id.menu_home_report_bug -> {
|
||||
BugReporter.openBugReportScreen(this, false)
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
return true
|
||||
|
|
|
@ -6,4 +6,9 @@
|
|||
android:icon="@drawable/ic_material_bug_report"
|
||||
android:title="@string/send_suggestion" />
|
||||
|
||||
<item
|
||||
android:id="@+id/menu_home_report_bug"
|
||||
android:icon="@drawable/ic_material_bug_report"
|
||||
android:title="@string/send_bug_report" />
|
||||
|
||||
</menu>
|
Loading…
Reference in a new issue