Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed the shape of speaker icons in the timeline grid from rounded rectangle to circles #276

Merged
merged 2 commits into from
Aug 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.layout.width
import androidx.compose.foundation.shape.CircleShape
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.Error
Expand Down Expand Up @@ -240,10 +241,10 @@ private fun SpeakerIcon(
contentDescription = stringResource(SessionsRes.string.content_description_user_icon),
modifier = modifier
.size(TimetableGridItemSizes.speakerHeight)
.clip(RoundedCornerShape(8.dp))
.clip(CircleShape)
.border(
BorderStroke(1.dp, MaterialTheme.colorScheme.outline),
RoundedCornerShape(8.dp),
CircleShape,
),
)
}
Expand Down
Loading