mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-31 14:27:57 +01:00 
			
		
		
		
	Fix Library List not using correct text color (#7548)
This commit is contained in:
		| @@ -4,6 +4,7 @@ import android.view.LayoutInflater | ||||
| import android.view.View | ||||
| import android.view.ViewGroup | ||||
| import androidx.compose.foundation.layout.consumeWindowInsets | ||||
| import androidx.compose.material3.LocalContentColor | ||||
| import androidx.compose.material3.LocalTextStyle | ||||
| import androidx.compose.material3.MaterialTheme | ||||
| import androidx.compose.runtime.CompositionLocalProvider | ||||
| @@ -104,7 +105,7 @@ class LibraryAdapter( | ||||
|             setViewCompositionStrategy(ViewCompositionStrategy.DisposeOnViewTreeLifecycleDestroyed) | ||||
|             setContent { | ||||
|                 TachiyomiTheme { | ||||
|                     CompositionLocalProvider(LocalTextStyle provides MaterialTheme.typography.bodySmall) { | ||||
|                     CompositionLocalProvider(LocalTextStyle provides MaterialTheme.typography.bodySmall, LocalContentColor provides MaterialTheme.colorScheme.onBackground) { | ||||
|                         val nestedScrollInterop = rememberNestedScrollInteropConnection() | ||||
|  | ||||
|                         val category = presenter.categories[position] | ||||
| @@ -143,9 +144,7 @@ class LibraryAdapter( | ||||
|                                         items = mangaList, | ||||
|                                         selection = presenter.selection, | ||||
|                                         onClick = onClickManga, | ||||
|                                         onLongClick = { | ||||
|                                             presenter.toggleSelection(it) | ||||
|                                         }, | ||||
|                                         onLongClick = onLongClickManga, | ||||
|                                     ) | ||||
|                                 } | ||||
|                                 DisplayModeSetting.COMPACT_GRID -> { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user