mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-29 21:37:56 +01:00 
			
		
		
		
	Fix source filter FAB disappear on rotation (fixes #4994)
This commit is contained in:
		| @@ -129,9 +129,6 @@ open class BrowseSourceController(bundle: Bundle) : | ||||
|     override fun onViewCreated(view: View) { | ||||
|         super.onViewCreated(view) | ||||
|  | ||||
|         // Prepare filter sheet | ||||
|         initFilterSheet() | ||||
|  | ||||
|         // Initialize adapter, scroll listener and recycler views | ||||
|         adapter = FlexibleAdapter(null, this) | ||||
|         setupRecycler(view) | ||||
| @@ -173,11 +170,12 @@ open class BrowseSourceController(bundle: Bundle) : | ||||
|     override fun configureFab(fab: ExtendedFloatingActionButton) { | ||||
|         actionFab = fab | ||||
|  | ||||
|         // Controlled by initFilterSheet() | ||||
|         fab.isVisible = false | ||||
|  | ||||
|         fab.setText(R.string.action_filter) | ||||
|         fab.setIconResource(R.drawable.ic_filter_list_24dp) | ||||
|  | ||||
|         // Controlled by initFilterSheet() | ||||
|         fab.isVisible = false | ||||
|         initFilterSheet() | ||||
|     } | ||||
|  | ||||
|     override fun cleanupFab(fab: ExtendedFloatingActionButton) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user