Skip to content

Commit

Permalink
Fix task button icon size not updating (#3679)
Browse files Browse the repository at this point in the history
  • Loading branch information
FikriMilano authored Jan 15, 2025
1 parent e13ebde commit fa11988
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ fun ActionableButton(
}
if (buttonProperties.startIcon != null) {
Image(
imageProperties = ImageProperties(imageConfig = buttonProperties.startIcon, size = 16),
imageProperties = ImageProperties(imageConfig = buttonProperties.startIcon, size = buttonProperties.statusIconSize),
tint = iconTintColor,
resourceData = resourceData,
navController = navController,
Expand All @@ -180,7 +180,7 @@ fun ActionableButton(
},
contentDescription = null,
tint = iconTintColor,
modifier = Modifier.size(16.dp),
modifier = Modifier.size(buttonProperties.statusIconSize.dp),
)
}
Text(
Expand Down

0 comments on commit fa11988

Please sign in to comment.