improve title of filter profiles editing

This commit is contained in:
johan12345
2021-10-02 13:15:58 +02:00
parent 738dcd5f8d
commit d249bf47c7
3 changed files with 3 additions and 1 deletions

View File

@@ -118,7 +118,7 @@ class FilterFragment : Fragment() {
vm.filterProfile.observe(viewLifecycleOwner) {
if (it != null) {
binding.toolbar.title = "${getString(R.string.menu_filter)}: ${it.name}"
binding.toolbar.title = getString(R.string.edit_filter_profile, it.name)
}
}
}