diff --git a/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionFragment.kt b/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionFragment.kt index c0618b2b0cd..da025a543e4 100644 --- a/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionFragment.kt +++ b/app/src/main/java/org/schabi/newpipe/local/subscription/SubscriptionFragment.kt @@ -143,9 +143,8 @@ class SubscriptionFragment : BaseStateFragment() { // -- Import -- val importSubMenu = menu.addSubMenu(R.string.import_from) - addMenuItem(importSubMenu, R.string.previous_export) { - onImportPreviousSelected() - } + addMenuItem(importSubMenu, R.string.previous_export) { onImportPreviousSelected() } + .setIcon(R.drawable.ic_backup) val services = requireContext().resources.getStringArray(R.array.service_list) for (serviceName in services) { @@ -157,10 +156,10 @@ class SubscriptionFragment : BaseStateFragment() { val supportedSources = subscriptionExtractor.supportedSources if (supportedSources.isEmpty()) continue - val item = addMenuItem(importSubMenu, serviceName) { + addMenuItem(importSubMenu, serviceName) { onImportFromServiceSelected(service.serviceId) } - item.setIcon(ServiceHelper.getIcon(service.serviceId)) + .setIcon(ServiceHelper.getIcon(service.serviceId)) } catch (e: ExtractionException) { throw RuntimeException( "Services array contains an entry that it's not a valid service name ($serviceName)", @@ -173,6 +172,7 @@ class SubscriptionFragment : BaseStateFragment() { val exportSubMenu = menu.addSubMenu(R.string.export_to) addMenuItem(exportSubMenu, R.string.file) { onExportSelected() } + .setIcon(R.drawable.ic_save) } private fun addMenuItem(