mirror of
				https://github.com/TeamNewPipe/NewPipe
				synced 2025-10-31 15:23:00 +00:00 
			
		
		
		
	Fix some modifiers
This commit is contained in:
		| @@ -61,9 +61,9 @@ fun Comment(comment: CommentsInfoItem) { | |||||||
|  |  | ||||||
|     Row( |     Row( | ||||||
|         modifier = Modifier |         modifier = Modifier | ||||||
|             .fillMaxWidth() |             .animateContentSize() | ||||||
|             .clickable { isExpanded = !isExpanded } |             .clickable { isExpanded = !isExpanded } | ||||||
|             .padding(all = 8.dp), |             .padding(8.dp), | ||||||
|         horizontalArrangement = Arrangement.spacedBy(8.dp) |         horizontalArrangement = Arrangement.spacedBy(8.dp) | ||||||
|     ) { |     ) { | ||||||
|         if (ImageStrategy.shouldLoadImages()) { |         if (ImageStrategy.shouldLoadImages()) { | ||||||
| @@ -102,7 +102,6 @@ fun Comment(comment: CommentsInfoItem) { | |||||||
|             } |             } | ||||||
|  |  | ||||||
|             Text( |             Text( | ||||||
|                 modifier = Modifier.animateContentSize(), |  | ||||||
|                 text = rememberParsedDescription(comment.commentText), |                 text = rememberParsedDescription(comment.commentText), | ||||||
|                 // If the comment is expanded, we display all its content |                 // If the comment is expanded, we display all its content | ||||||
|                 // otherwise we only display the first two lines |                 // otherwise we only display the first two lines | ||||||
|   | |||||||
| @@ -84,7 +84,9 @@ private fun NoCommentsMessage(error: Throwable?) { | |||||||
|     } |     } | ||||||
|  |  | ||||||
|     Column( |     Column( | ||||||
|         modifier = Modifier.fillMaxWidth().wrapContentSize(Alignment.Center), |         modifier = Modifier | ||||||
|  |             .fillMaxWidth() | ||||||
|  |             .wrapContentSize(Alignment.Center), | ||||||
|         horizontalAlignment = Alignment.CenterHorizontally |         horizontalAlignment = Alignment.CenterHorizontally | ||||||
|     ) { |     ) { | ||||||
|         Text(text = "(╯°-°)╯", fontSize = 35.sp) |         Text(text = "(╯°-°)╯", fontSize = 35.sp) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Isira Seneviratne
					Isira Seneviratne